├── .eslintrc.json ├── .gitignore ├── README.md ├── components ├── AppContextFolder │ └── AppContext.tsx ├── CustomComponents │ └── ScreenSizeDetector.tsx ├── DataPullerProject │ ├── AboutComp │ │ └── About.tsx │ ├── BlockElem │ │ └── BlockElem.tsx │ ├── FuncVar │ │ └── foo.ts │ ├── LatLonTable │ │ └── LatLonTable.tsx │ ├── Map.tsx │ ├── TableRow │ │ └── TableRow.tsx │ └── TimerComp │ │ └── Timer.tsx ├── Footer │ └── Footer.tsx ├── Header │ ├── Header.tsx │ ├── Headercomp │ │ ├── DesktopMenu.tsx │ │ ├── IconMenu.tsx │ │ ├── Logo.tsx │ │ └── MobileMenu.tsx │ └── StartupLogo │ │ └── Startup.tsx ├── Home │ ├── AboutMe │ │ └── AboutMe.tsx │ ├── GetInTouch │ │ └── GetInTouch.tsx │ ├── Maintenance │ │ └── Maintenance.tsx │ ├── MyName │ │ └── MyName.tsx │ ├── SocialMediaArround │ │ └── SocialMediaArround.tsx │ ├── SomethingIveBuilt │ │ └── SomethingIveBuilt.tsx │ ├── ThisSiteCantBeReached │ │ └── ThisCantBeReached.tsx │ └── WhereIHaveWorked │ │ ├── Descriptions │ │ ├── AdvancedAgroManagement.tsx │ │ ├── EnergyInstitute.tsx │ │ ├── EnsVision.tsx │ │ ├── Fantasia.tsx │ │ ├── FeverTokens.tsx │ │ ├── IdealFresh.tsx │ │ ├── SuperBerry.tsx │ │ ├── TrouveTavoie.tsx │ │ ├── YpredictAI.tsx │ │ └── taskAndType.ts │ │ └── WhereIHaveWorked.tsx ├── Icons │ ├── ArrowIcon.tsx │ ├── ExternalLink.tsx │ ├── GithubIcon.tsx │ ├── GithubIconForSomethingIveBuild.tsx │ ├── InstagramIcon.tsx │ ├── LinkedinIcon.tsx │ ├── Loader.tsx │ └── YoutubeIcon.tsx ├── TypingProject │ ├── AboutComp │ │ └── About.tsx │ ├── CursorCarotComp │ │ └── CursorCarotComp.tsx │ ├── Footer │ │ └── Footer.tsx │ ├── Functions │ │ └── functions.ts │ ├── Icons │ │ └── RestartIcon.tsx │ ├── Image │ │ └── Img.tsx │ ├── Statistics │ │ └── TypingStatistics.tsx │ ├── Types │ │ └── types.tsx │ ├── statisticsTab │ │ └── StatisticsTab.tsx │ └── timer │ │ └── TimerSpan.tsx └── smallComp │ └── image │ └── Img.tsx ├── config.ts ├── next-env.d.ts ├── next.config.js ├── package.json ├── pages ├── _app.tsx ├── api │ ├── typing │ │ └── [minLength].ts │ ├── userInfoByIP │ │ └── [userInfo].ts │ └── userInfoByLatLon │ │ └── [lat] │ │ └── [lon].ts ├── index.tsx ├── privacy-policy │ └── index.tsx ├── squiz-matrix │ └── privacy-policy │ │ └── index.tsx ├── test │ └── index.tsx ├── typing │ └── index.tsx └── userdatapuller │ └── index.tsx ├── postcss.config.js ├── public ├── CallCenter.png ├── ensvision.jpg ├── favicon.ico ├── gdscCercle.png ├── hackme.jpg ├── haircut.png ├── image.jpg ├── img │ ├── Portfolio-portrait-2.jpg │ ├── Portfolio-portrait-3.jpg │ ├── Portfolio-portrait.jpg │ ├── YPredict-v1.jpg │ ├── feverTokens.png │ └── titof.jpg ├── marker-icon.png ├── resume.pdf ├── titofCercle.png ├── typing.png └── vercel.svg ├── styles ├── Home.module.css └── globals.css ├── tailwind.config.cjs ├── tsconfig.json └── yarn.lock /.eslintrc.json: -------------------------------------------------------------------------------- 1 | { 2 | "extends": "next/core-web-vitals" 3 | } 4 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hktitof/my-website/HEAD/.gitignore -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hktitof/my-website/HEAD/README.md -------------------------------------------------------------------------------- /components/AppContextFolder/AppContext.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hktitof/my-website/HEAD/components/AppContextFolder/AppContext.tsx -------------------------------------------------------------------------------- /components/CustomComponents/ScreenSizeDetector.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hktitof/my-website/HEAD/components/CustomComponents/ScreenSizeDetector.tsx -------------------------------------------------------------------------------- /components/DataPullerProject/AboutComp/About.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hktitof/my-website/HEAD/components/DataPullerProject/AboutComp/About.tsx -------------------------------------------------------------------------------- /components/DataPullerProject/BlockElem/BlockElem.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hktitof/my-website/HEAD/components/DataPullerProject/BlockElem/BlockElem.tsx -------------------------------------------------------------------------------- /components/DataPullerProject/FuncVar/foo.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hktitof/my-website/HEAD/components/DataPullerProject/FuncVar/foo.ts -------------------------------------------------------------------------------- /components/DataPullerProject/LatLonTable/LatLonTable.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hktitof/my-website/HEAD/components/DataPullerProject/LatLonTable/LatLonTable.tsx -------------------------------------------------------------------------------- /components/DataPullerProject/Map.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hktitof/my-website/HEAD/components/DataPullerProject/Map.tsx -------------------------------------------------------------------------------- /components/DataPullerProject/TableRow/TableRow.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hktitof/my-website/HEAD/components/DataPullerProject/TableRow/TableRow.tsx -------------------------------------------------------------------------------- /components/DataPullerProject/TimerComp/Timer.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hktitof/my-website/HEAD/components/DataPullerProject/TimerComp/Timer.tsx -------------------------------------------------------------------------------- /components/Footer/Footer.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hktitof/my-website/HEAD/components/Footer/Footer.tsx -------------------------------------------------------------------------------- /components/Header/Header.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hktitof/my-website/HEAD/components/Header/Header.tsx -------------------------------------------------------------------------------- /components/Header/Headercomp/DesktopMenu.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hktitof/my-website/HEAD/components/Header/Headercomp/DesktopMenu.tsx -------------------------------------------------------------------------------- /components/Header/Headercomp/IconMenu.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hktitof/my-website/HEAD/components/Header/Headercomp/IconMenu.tsx -------------------------------------------------------------------------------- /components/Header/Headercomp/Logo.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hktitof/my-website/HEAD/components/Header/Headercomp/Logo.tsx -------------------------------------------------------------------------------- /components/Header/Headercomp/MobileMenu.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hktitof/my-website/HEAD/components/Header/Headercomp/MobileMenu.tsx -------------------------------------------------------------------------------- /components/Header/StartupLogo/Startup.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hktitof/my-website/HEAD/components/Header/StartupLogo/Startup.tsx -------------------------------------------------------------------------------- /components/Home/AboutMe/AboutMe.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hktitof/my-website/HEAD/components/Home/AboutMe/AboutMe.tsx -------------------------------------------------------------------------------- /components/Home/GetInTouch/GetInTouch.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hktitof/my-website/HEAD/components/Home/GetInTouch/GetInTouch.tsx -------------------------------------------------------------------------------- /components/Home/Maintenance/Maintenance.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hktitof/my-website/HEAD/components/Home/Maintenance/Maintenance.tsx -------------------------------------------------------------------------------- /components/Home/MyName/MyName.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hktitof/my-website/HEAD/components/Home/MyName/MyName.tsx -------------------------------------------------------------------------------- /components/Home/SocialMediaArround/SocialMediaArround.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hktitof/my-website/HEAD/components/Home/SocialMediaArround/SocialMediaArround.tsx -------------------------------------------------------------------------------- /components/Home/SomethingIveBuilt/SomethingIveBuilt.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hktitof/my-website/HEAD/components/Home/SomethingIveBuilt/SomethingIveBuilt.tsx -------------------------------------------------------------------------------- /components/Home/ThisSiteCantBeReached/ThisCantBeReached.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hktitof/my-website/HEAD/components/Home/ThisSiteCantBeReached/ThisCantBeReached.tsx -------------------------------------------------------------------------------- /components/Home/WhereIHaveWorked/Descriptions/AdvancedAgroManagement.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hktitof/my-website/HEAD/components/Home/WhereIHaveWorked/Descriptions/AdvancedAgroManagement.tsx -------------------------------------------------------------------------------- /components/Home/WhereIHaveWorked/Descriptions/EnergyInstitute.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hktitof/my-website/HEAD/components/Home/WhereIHaveWorked/Descriptions/EnergyInstitute.tsx -------------------------------------------------------------------------------- /components/Home/WhereIHaveWorked/Descriptions/EnsVision.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hktitof/my-website/HEAD/components/Home/WhereIHaveWorked/Descriptions/EnsVision.tsx -------------------------------------------------------------------------------- /components/Home/WhereIHaveWorked/Descriptions/Fantasia.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hktitof/my-website/HEAD/components/Home/WhereIHaveWorked/Descriptions/Fantasia.tsx -------------------------------------------------------------------------------- /components/Home/WhereIHaveWorked/Descriptions/FeverTokens.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hktitof/my-website/HEAD/components/Home/WhereIHaveWorked/Descriptions/FeverTokens.tsx -------------------------------------------------------------------------------- /components/Home/WhereIHaveWorked/Descriptions/IdealFresh.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hktitof/my-website/HEAD/components/Home/WhereIHaveWorked/Descriptions/IdealFresh.tsx -------------------------------------------------------------------------------- /components/Home/WhereIHaveWorked/Descriptions/SuperBerry.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hktitof/my-website/HEAD/components/Home/WhereIHaveWorked/Descriptions/SuperBerry.tsx -------------------------------------------------------------------------------- /components/Home/WhereIHaveWorked/Descriptions/TrouveTavoie.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hktitof/my-website/HEAD/components/Home/WhereIHaveWorked/Descriptions/TrouveTavoie.tsx -------------------------------------------------------------------------------- /components/Home/WhereIHaveWorked/Descriptions/YpredictAI.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hktitof/my-website/HEAD/components/Home/WhereIHaveWorked/Descriptions/YpredictAI.tsx -------------------------------------------------------------------------------- /components/Home/WhereIHaveWorked/Descriptions/taskAndType.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hktitof/my-website/HEAD/components/Home/WhereIHaveWorked/Descriptions/taskAndType.ts -------------------------------------------------------------------------------- /components/Home/WhereIHaveWorked/WhereIHaveWorked.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hktitof/my-website/HEAD/components/Home/WhereIHaveWorked/WhereIHaveWorked.tsx -------------------------------------------------------------------------------- /components/Icons/ArrowIcon.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hktitof/my-website/HEAD/components/Icons/ArrowIcon.tsx -------------------------------------------------------------------------------- /components/Icons/ExternalLink.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hktitof/my-website/HEAD/components/Icons/ExternalLink.tsx -------------------------------------------------------------------------------- /components/Icons/GithubIcon.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hktitof/my-website/HEAD/components/Icons/GithubIcon.tsx -------------------------------------------------------------------------------- /components/Icons/GithubIconForSomethingIveBuild.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hktitof/my-website/HEAD/components/Icons/GithubIconForSomethingIveBuild.tsx -------------------------------------------------------------------------------- /components/Icons/InstagramIcon.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hktitof/my-website/HEAD/components/Icons/InstagramIcon.tsx -------------------------------------------------------------------------------- /components/Icons/LinkedinIcon.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hktitof/my-website/HEAD/components/Icons/LinkedinIcon.tsx -------------------------------------------------------------------------------- /components/Icons/Loader.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hktitof/my-website/HEAD/components/Icons/Loader.tsx -------------------------------------------------------------------------------- /components/Icons/YoutubeIcon.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hktitof/my-website/HEAD/components/Icons/YoutubeIcon.tsx -------------------------------------------------------------------------------- /components/TypingProject/AboutComp/About.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hktitof/my-website/HEAD/components/TypingProject/AboutComp/About.tsx -------------------------------------------------------------------------------- /components/TypingProject/CursorCarotComp/CursorCarotComp.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hktitof/my-website/HEAD/components/TypingProject/CursorCarotComp/CursorCarotComp.tsx -------------------------------------------------------------------------------- /components/TypingProject/Footer/Footer.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hktitof/my-website/HEAD/components/TypingProject/Footer/Footer.tsx -------------------------------------------------------------------------------- /components/TypingProject/Functions/functions.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hktitof/my-website/HEAD/components/TypingProject/Functions/functions.ts -------------------------------------------------------------------------------- /components/TypingProject/Icons/RestartIcon.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hktitof/my-website/HEAD/components/TypingProject/Icons/RestartIcon.tsx -------------------------------------------------------------------------------- /components/TypingProject/Image/Img.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hktitof/my-website/HEAD/components/TypingProject/Image/Img.tsx -------------------------------------------------------------------------------- /components/TypingProject/Statistics/TypingStatistics.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hktitof/my-website/HEAD/components/TypingProject/Statistics/TypingStatistics.tsx -------------------------------------------------------------------------------- /components/TypingProject/Types/types.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hktitof/my-website/HEAD/components/TypingProject/Types/types.tsx -------------------------------------------------------------------------------- /components/TypingProject/statisticsTab/StatisticsTab.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hktitof/my-website/HEAD/components/TypingProject/statisticsTab/StatisticsTab.tsx -------------------------------------------------------------------------------- /components/TypingProject/timer/TimerSpan.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hktitof/my-website/HEAD/components/TypingProject/timer/TimerSpan.tsx -------------------------------------------------------------------------------- /components/smallComp/image/Img.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hktitof/my-website/HEAD/components/smallComp/image/Img.tsx -------------------------------------------------------------------------------- /config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hktitof/my-website/HEAD/config.ts -------------------------------------------------------------------------------- /next-env.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hktitof/my-website/HEAD/next-env.d.ts -------------------------------------------------------------------------------- /next.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hktitof/my-website/HEAD/next.config.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hktitof/my-website/HEAD/package.json -------------------------------------------------------------------------------- /pages/_app.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hktitof/my-website/HEAD/pages/_app.tsx -------------------------------------------------------------------------------- /pages/api/typing/[minLength].ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hktitof/my-website/HEAD/pages/api/typing/[minLength].ts -------------------------------------------------------------------------------- /pages/api/userInfoByIP/[userInfo].ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hktitof/my-website/HEAD/pages/api/userInfoByIP/[userInfo].ts -------------------------------------------------------------------------------- /pages/api/userInfoByLatLon/[lat]/[lon].ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hktitof/my-website/HEAD/pages/api/userInfoByLatLon/[lat]/[lon].ts -------------------------------------------------------------------------------- /pages/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hktitof/my-website/HEAD/pages/index.tsx -------------------------------------------------------------------------------- /pages/privacy-policy/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hktitof/my-website/HEAD/pages/privacy-policy/index.tsx -------------------------------------------------------------------------------- /pages/squiz-matrix/privacy-policy/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hktitof/my-website/HEAD/pages/squiz-matrix/privacy-policy/index.tsx -------------------------------------------------------------------------------- /pages/test/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hktitof/my-website/HEAD/pages/test/index.tsx -------------------------------------------------------------------------------- /pages/typing/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hktitof/my-website/HEAD/pages/typing/index.tsx -------------------------------------------------------------------------------- /pages/userdatapuller/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hktitof/my-website/HEAD/pages/userdatapuller/index.tsx -------------------------------------------------------------------------------- /postcss.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hktitof/my-website/HEAD/postcss.config.js -------------------------------------------------------------------------------- /public/CallCenter.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hktitof/my-website/HEAD/public/CallCenter.png -------------------------------------------------------------------------------- /public/ensvision.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hktitof/my-website/HEAD/public/ensvision.jpg -------------------------------------------------------------------------------- /public/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hktitof/my-website/HEAD/public/favicon.ico -------------------------------------------------------------------------------- /public/gdscCercle.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hktitof/my-website/HEAD/public/gdscCercle.png -------------------------------------------------------------------------------- /public/hackme.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hktitof/my-website/HEAD/public/hackme.jpg -------------------------------------------------------------------------------- /public/haircut.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hktitof/my-website/HEAD/public/haircut.png -------------------------------------------------------------------------------- /public/image.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hktitof/my-website/HEAD/public/image.jpg -------------------------------------------------------------------------------- /public/img/Portfolio-portrait-2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hktitof/my-website/HEAD/public/img/Portfolio-portrait-2.jpg -------------------------------------------------------------------------------- /public/img/Portfolio-portrait-3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hktitof/my-website/HEAD/public/img/Portfolio-portrait-3.jpg -------------------------------------------------------------------------------- /public/img/Portfolio-portrait.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hktitof/my-website/HEAD/public/img/Portfolio-portrait.jpg -------------------------------------------------------------------------------- /public/img/YPredict-v1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hktitof/my-website/HEAD/public/img/YPredict-v1.jpg -------------------------------------------------------------------------------- /public/img/feverTokens.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hktitof/my-website/HEAD/public/img/feverTokens.png -------------------------------------------------------------------------------- /public/img/titof.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hktitof/my-website/HEAD/public/img/titof.jpg -------------------------------------------------------------------------------- /public/marker-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hktitof/my-website/HEAD/public/marker-icon.png -------------------------------------------------------------------------------- /public/resume.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hktitof/my-website/HEAD/public/resume.pdf -------------------------------------------------------------------------------- /public/titofCercle.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hktitof/my-website/HEAD/public/titofCercle.png -------------------------------------------------------------------------------- /public/typing.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hktitof/my-website/HEAD/public/typing.png -------------------------------------------------------------------------------- /public/vercel.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hktitof/my-website/HEAD/public/vercel.svg -------------------------------------------------------------------------------- /styles/Home.module.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hktitof/my-website/HEAD/styles/Home.module.css -------------------------------------------------------------------------------- /styles/globals.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hktitof/my-website/HEAD/styles/globals.css -------------------------------------------------------------------------------- /tailwind.config.cjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hktitof/my-website/HEAD/tailwind.config.cjs -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hktitof/my-website/HEAD/tsconfig.json -------------------------------------------------------------------------------- /yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hktitof/my-website/HEAD/yarn.lock --------------------------------------------------------------------------------