https://github.com/antoniotoni/antoniotoni
https://github.com/antoniotoni/antoniotoni
github readme readme-profile
Last synced: 2 months ago
JSON representation
- Host: GitHub
- URL: https://github.com/antoniotoni/antoniotoni
- Owner: AntonioToni
- Created: 2022-03-10T16:29:56.000Z (over 4 years ago)
- Default Branch: main
- Last Pushed: 2024-03-20T13:31:55.000Z (over 2 years ago)
- Last Synced: 2025-03-20T02:34:03.414Z (over 1 year ago)
- Topics: github, readme, readme-profile
- Homepage:
- Size: 21.5 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
```ts
import { Skills, Frameworks, Tools } from './types';
const aboutMe: string = `
I'm currently diving deep into the world of software development, exploring various technologies
and honing my skills to become a proficient developer.
`;
const mySkills: Skills[] = [
'TypeScript',
'JavaScript',
'HTML',
'CSS',
'Markdown'
];
const frameworks: Frameworks[] = [
'ReactJS',
'Express'
];
const stylingLibraries: Frameworks[] = [
'MaterialUI'
];
const tools: Tools[] = [
'Visual Studio Code'
];
console.log('Thanks for stopping by! Feel free to reach out for collaboration or just to say hello.');
export {
aboutMe,
mySkills,
frameworks,
stylingLibraries,
tools
};
```