├── . eslintignore ├── .eslintrc.js ├── .gitignore ├── .prettierignore ├── .prettierrc ├── .stylelintrc.json ├── CHANGELOG.md ├── README.md ├── css ├── styles.scss └── theme.scss ├── icons ├── icon-template.js └── svg │ ├── behance.svg │ ├── codepen.svg │ ├── copy.svg │ ├── github.svg │ ├── help-circle-filled.svg │ ├── instagram.svg │ ├── linkedin.svg │ └── twitter.svg ├── next-env.d.ts ├── package.json ├── postcss.config.js ├── public ├── BingSiteAuth.xml ├── favicon.ico ├── fonts │ ├── NunitoSans-Black.ttf │ ├── NunitoSans-Bold.ttf │ ├── NunitoSans-Regular.ttf │ └── adinda-melia.regular.otf ├── img │ ├── db_face.png │ └── logo-social.png ├── robots.txt └── sitemap.xml ├── src ├── components │ ├── code-snippet │ │ └── CodeSnippet.tsx │ ├── footer │ │ └── Footer.tsx │ ├── hoc │ │ └── with-page-transition.tsx │ ├── logo │ │ └── Logo.tsx │ ├── md-content │ │ └── MdContent.tsx │ ├── menu │ │ ├── Menu.animation.ts │ │ ├── Menu.module.scss │ │ ├── Menu.tsx │ │ ├── info-section │ │ │ └── InfoSection.tsx │ │ └── tile-section │ │ │ ├── TileSection.tsx │ │ │ └── menu-tile │ │ │ ├── MenuTile.module.scss │ │ │ └── MenuTile.tsx │ ├── nav-bar │ │ └── NavBar.tsx │ ├── page-body │ │ └── PageBody.tsx │ ├── page-header │ │ ├── PageHeader.animation.ts │ │ └── PageHeader.tsx │ ├── page-transition │ │ ├── PageTransition.animation.ts │ │ └── PageTransition.tsx │ ├── page │ │ └── Page.tsx │ ├── post-tile │ │ ├── PostTile.component.tsx │ │ └── PostTile.module.scss │ ├── skills-section │ │ ├── SkillsSection.animation.ts │ │ └── SkillsSection.component.tsx │ ├── social-icons │ │ └── SocialIcons.tsx │ ├── social-share │ │ └── SocialShare.component.tsx │ └── track-link │ │ └── TrackLink.tsx ├── constants │ └── index.ts ├── icons │ ├── Behance.tsx │ ├── Codepen.tsx │ ├── Copy.tsx │ ├── Github.tsx │ ├── HelpCircleFilled.tsx │ ├── Instagram.tsx │ ├── Linkedin.tsx │ └── Twitter.tsx ├── landing │ └── components │ │ └── under-construction │ │ ├── UnderConstruction.module.scss │ │ └── UnderContruction.tsx ├── lib │ ├── ga │ │ ├── index.ts │ │ └── types.ts │ ├── hooks.ts │ ├── index.ts │ ├── particle.ts │ └── vector.ts ├── models │ ├── Author.ts │ ├── Nugget.ts │ └── Post.ts ├── nuggets │ └── nuggets-page │ │ ├── NuggetsPage.component.tsx │ │ └── NuggetsPage.hooks.ts ├── pages │ ├── 404.tsx │ ├── _app.tsx │ ├── _document.tsx │ ├── about │ │ └── index.tsx │ ├── api │ │ ├── nuggets │ │ │ ├── [id].ts │ │ │ └── index.ts │ │ ├── posts │ │ │ ├── [id].ts │ │ │ └── index.ts │ │ └── sitemap.ts │ ├── index.tsx │ ├── nuggets │ │ ├── [id] │ │ │ └── [slug].tsx │ │ ├── index.tsx │ │ └── tag │ │ │ └── [tag].tsx │ ├── posts │ │ ├── [id] │ │ │ └── [slug].tsx │ │ ├── index.tsx │ │ └── tag │ │ │ └── [tag].tsx │ └── works │ │ └── index.tsx ├── posts │ ├── posts-page │ │ ├── PostsPage.component.tsx │ │ └── PostsPage.hooks.ts │ ├── related-post │ │ └── RelatedPost.component.tsx │ ├── related-posts-section │ │ └── RelatedPostsSection.component.tsx │ └── share-section │ │ └── ShareSection.component.tsx └── works │ └── components │ ├── codepen-slider │ └── CodePenSlider.component.tsx │ ├── works-list │ └── WorksList.component.tsx │ └── works-slider │ ├── WorksSlider.animation.ts │ └── WorksSlider.tsx ├── tailwind.config.js └── tsconfig.json /. eslintignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sidthesloth92/db-portfolio/HEAD/. eslintignore -------------------------------------------------------------------------------- /.eslintrc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sidthesloth92/db-portfolio/HEAD/.eslintrc.js -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sidthesloth92/db-portfolio/HEAD/.gitignore -------------------------------------------------------------------------------- /.prettierignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sidthesloth92/db-portfolio/HEAD/.prettierignore -------------------------------------------------------------------------------- /.prettierrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sidthesloth92/db-portfolio/HEAD/.prettierrc -------------------------------------------------------------------------------- /.stylelintrc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sidthesloth92/db-portfolio/HEAD/.stylelintrc.json -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sidthesloth92/db-portfolio/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sidthesloth92/db-portfolio/HEAD/README.md -------------------------------------------------------------------------------- /css/styles.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sidthesloth92/db-portfolio/HEAD/css/styles.scss -------------------------------------------------------------------------------- /css/theme.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sidthesloth92/db-portfolio/HEAD/css/theme.scss -------------------------------------------------------------------------------- /icons/icon-template.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sidthesloth92/db-portfolio/HEAD/icons/icon-template.js -------------------------------------------------------------------------------- /icons/svg/behance.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sidthesloth92/db-portfolio/HEAD/icons/svg/behance.svg -------------------------------------------------------------------------------- /icons/svg/codepen.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sidthesloth92/db-portfolio/HEAD/icons/svg/codepen.svg -------------------------------------------------------------------------------- /icons/svg/copy.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sidthesloth92/db-portfolio/HEAD/icons/svg/copy.svg -------------------------------------------------------------------------------- /icons/svg/github.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sidthesloth92/db-portfolio/HEAD/icons/svg/github.svg -------------------------------------------------------------------------------- /icons/svg/help-circle-filled.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sidthesloth92/db-portfolio/HEAD/icons/svg/help-circle-filled.svg -------------------------------------------------------------------------------- /icons/svg/instagram.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sidthesloth92/db-portfolio/HEAD/icons/svg/instagram.svg -------------------------------------------------------------------------------- /icons/svg/linkedin.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sidthesloth92/db-portfolio/HEAD/icons/svg/linkedin.svg -------------------------------------------------------------------------------- /icons/svg/twitter.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sidthesloth92/db-portfolio/HEAD/icons/svg/twitter.svg -------------------------------------------------------------------------------- /next-env.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sidthesloth92/db-portfolio/HEAD/next-env.d.ts -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sidthesloth92/db-portfolio/HEAD/package.json -------------------------------------------------------------------------------- /postcss.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sidthesloth92/db-portfolio/HEAD/postcss.config.js -------------------------------------------------------------------------------- /public/BingSiteAuth.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sidthesloth92/db-portfolio/HEAD/public/BingSiteAuth.xml -------------------------------------------------------------------------------- /public/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sidthesloth92/db-portfolio/HEAD/public/favicon.ico -------------------------------------------------------------------------------- /public/fonts/NunitoSans-Black.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sidthesloth92/db-portfolio/HEAD/public/fonts/NunitoSans-Black.ttf -------------------------------------------------------------------------------- /public/fonts/NunitoSans-Bold.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sidthesloth92/db-portfolio/HEAD/public/fonts/NunitoSans-Bold.ttf -------------------------------------------------------------------------------- /public/fonts/NunitoSans-Regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sidthesloth92/db-portfolio/HEAD/public/fonts/NunitoSans-Regular.ttf -------------------------------------------------------------------------------- /public/fonts/adinda-melia.regular.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sidthesloth92/db-portfolio/HEAD/public/fonts/adinda-melia.regular.otf -------------------------------------------------------------------------------- /public/img/db_face.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sidthesloth92/db-portfolio/HEAD/public/img/db_face.png -------------------------------------------------------------------------------- /public/img/logo-social.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sidthesloth92/db-portfolio/HEAD/public/img/logo-social.png -------------------------------------------------------------------------------- /public/robots.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sidthesloth92/db-portfolio/HEAD/public/robots.txt -------------------------------------------------------------------------------- /public/sitemap.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sidthesloth92/db-portfolio/HEAD/public/sitemap.xml -------------------------------------------------------------------------------- /src/components/code-snippet/CodeSnippet.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sidthesloth92/db-portfolio/HEAD/src/components/code-snippet/CodeSnippet.tsx -------------------------------------------------------------------------------- /src/components/footer/Footer.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sidthesloth92/db-portfolio/HEAD/src/components/footer/Footer.tsx -------------------------------------------------------------------------------- /src/components/hoc/with-page-transition.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sidthesloth92/db-portfolio/HEAD/src/components/hoc/with-page-transition.tsx -------------------------------------------------------------------------------- /src/components/logo/Logo.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sidthesloth92/db-portfolio/HEAD/src/components/logo/Logo.tsx -------------------------------------------------------------------------------- /src/components/md-content/MdContent.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sidthesloth92/db-portfolio/HEAD/src/components/md-content/MdContent.tsx -------------------------------------------------------------------------------- /src/components/menu/Menu.animation.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sidthesloth92/db-portfolio/HEAD/src/components/menu/Menu.animation.ts -------------------------------------------------------------------------------- /src/components/menu/Menu.module.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sidthesloth92/db-portfolio/HEAD/src/components/menu/Menu.module.scss -------------------------------------------------------------------------------- /src/components/menu/Menu.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sidthesloth92/db-portfolio/HEAD/src/components/menu/Menu.tsx -------------------------------------------------------------------------------- /src/components/menu/info-section/InfoSection.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sidthesloth92/db-portfolio/HEAD/src/components/menu/info-section/InfoSection.tsx -------------------------------------------------------------------------------- /src/components/menu/tile-section/TileSection.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sidthesloth92/db-portfolio/HEAD/src/components/menu/tile-section/TileSection.tsx -------------------------------------------------------------------------------- /src/components/menu/tile-section/menu-tile/MenuTile.module.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sidthesloth92/db-portfolio/HEAD/src/components/menu/tile-section/menu-tile/MenuTile.module.scss -------------------------------------------------------------------------------- /src/components/menu/tile-section/menu-tile/MenuTile.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sidthesloth92/db-portfolio/HEAD/src/components/menu/tile-section/menu-tile/MenuTile.tsx -------------------------------------------------------------------------------- /src/components/nav-bar/NavBar.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sidthesloth92/db-portfolio/HEAD/src/components/nav-bar/NavBar.tsx -------------------------------------------------------------------------------- /src/components/page-body/PageBody.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sidthesloth92/db-portfolio/HEAD/src/components/page-body/PageBody.tsx -------------------------------------------------------------------------------- /src/components/page-header/PageHeader.animation.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sidthesloth92/db-portfolio/HEAD/src/components/page-header/PageHeader.animation.ts -------------------------------------------------------------------------------- /src/components/page-header/PageHeader.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sidthesloth92/db-portfolio/HEAD/src/components/page-header/PageHeader.tsx -------------------------------------------------------------------------------- /src/components/page-transition/PageTransition.animation.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sidthesloth92/db-portfolio/HEAD/src/components/page-transition/PageTransition.animation.ts -------------------------------------------------------------------------------- /src/components/page-transition/PageTransition.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sidthesloth92/db-portfolio/HEAD/src/components/page-transition/PageTransition.tsx -------------------------------------------------------------------------------- /src/components/page/Page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sidthesloth92/db-portfolio/HEAD/src/components/page/Page.tsx -------------------------------------------------------------------------------- /src/components/post-tile/PostTile.component.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sidthesloth92/db-portfolio/HEAD/src/components/post-tile/PostTile.component.tsx -------------------------------------------------------------------------------- /src/components/post-tile/PostTile.module.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sidthesloth92/db-portfolio/HEAD/src/components/post-tile/PostTile.module.scss -------------------------------------------------------------------------------- /src/components/skills-section/SkillsSection.animation.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sidthesloth92/db-portfolio/HEAD/src/components/skills-section/SkillsSection.animation.ts -------------------------------------------------------------------------------- /src/components/skills-section/SkillsSection.component.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sidthesloth92/db-portfolio/HEAD/src/components/skills-section/SkillsSection.component.tsx -------------------------------------------------------------------------------- /src/components/social-icons/SocialIcons.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sidthesloth92/db-portfolio/HEAD/src/components/social-icons/SocialIcons.tsx -------------------------------------------------------------------------------- /src/components/social-share/SocialShare.component.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sidthesloth92/db-portfolio/HEAD/src/components/social-share/SocialShare.component.tsx -------------------------------------------------------------------------------- /src/components/track-link/TrackLink.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sidthesloth92/db-portfolio/HEAD/src/components/track-link/TrackLink.tsx -------------------------------------------------------------------------------- /src/constants/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sidthesloth92/db-portfolio/HEAD/src/constants/index.ts -------------------------------------------------------------------------------- /src/icons/Behance.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sidthesloth92/db-portfolio/HEAD/src/icons/Behance.tsx -------------------------------------------------------------------------------- /src/icons/Codepen.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sidthesloth92/db-portfolio/HEAD/src/icons/Codepen.tsx -------------------------------------------------------------------------------- /src/icons/Copy.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sidthesloth92/db-portfolio/HEAD/src/icons/Copy.tsx -------------------------------------------------------------------------------- /src/icons/Github.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sidthesloth92/db-portfolio/HEAD/src/icons/Github.tsx -------------------------------------------------------------------------------- /src/icons/HelpCircleFilled.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sidthesloth92/db-portfolio/HEAD/src/icons/HelpCircleFilled.tsx -------------------------------------------------------------------------------- /src/icons/Instagram.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sidthesloth92/db-portfolio/HEAD/src/icons/Instagram.tsx -------------------------------------------------------------------------------- /src/icons/Linkedin.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sidthesloth92/db-portfolio/HEAD/src/icons/Linkedin.tsx -------------------------------------------------------------------------------- /src/icons/Twitter.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sidthesloth92/db-portfolio/HEAD/src/icons/Twitter.tsx -------------------------------------------------------------------------------- /src/landing/components/under-construction/UnderConstruction.module.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sidthesloth92/db-portfolio/HEAD/src/landing/components/under-construction/UnderConstruction.module.scss -------------------------------------------------------------------------------- /src/landing/components/under-construction/UnderContruction.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sidthesloth92/db-portfolio/HEAD/src/landing/components/under-construction/UnderContruction.tsx -------------------------------------------------------------------------------- /src/lib/ga/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sidthesloth92/db-portfolio/HEAD/src/lib/ga/index.ts -------------------------------------------------------------------------------- /src/lib/ga/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sidthesloth92/db-portfolio/HEAD/src/lib/ga/types.ts -------------------------------------------------------------------------------- /src/lib/hooks.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sidthesloth92/db-portfolio/HEAD/src/lib/hooks.ts -------------------------------------------------------------------------------- /src/lib/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sidthesloth92/db-portfolio/HEAD/src/lib/index.ts -------------------------------------------------------------------------------- /src/lib/particle.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sidthesloth92/db-portfolio/HEAD/src/lib/particle.ts -------------------------------------------------------------------------------- /src/lib/vector.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sidthesloth92/db-portfolio/HEAD/src/lib/vector.ts -------------------------------------------------------------------------------- /src/models/Author.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sidthesloth92/db-portfolio/HEAD/src/models/Author.ts -------------------------------------------------------------------------------- /src/models/Nugget.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sidthesloth92/db-portfolio/HEAD/src/models/Nugget.ts -------------------------------------------------------------------------------- /src/models/Post.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sidthesloth92/db-portfolio/HEAD/src/models/Post.ts -------------------------------------------------------------------------------- /src/nuggets/nuggets-page/NuggetsPage.component.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sidthesloth92/db-portfolio/HEAD/src/nuggets/nuggets-page/NuggetsPage.component.tsx -------------------------------------------------------------------------------- /src/nuggets/nuggets-page/NuggetsPage.hooks.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sidthesloth92/db-portfolio/HEAD/src/nuggets/nuggets-page/NuggetsPage.hooks.ts -------------------------------------------------------------------------------- /src/pages/404.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sidthesloth92/db-portfolio/HEAD/src/pages/404.tsx -------------------------------------------------------------------------------- /src/pages/_app.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sidthesloth92/db-portfolio/HEAD/src/pages/_app.tsx -------------------------------------------------------------------------------- /src/pages/_document.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sidthesloth92/db-portfolio/HEAD/src/pages/_document.tsx -------------------------------------------------------------------------------- /src/pages/about/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sidthesloth92/db-portfolio/HEAD/src/pages/about/index.tsx -------------------------------------------------------------------------------- /src/pages/api/nuggets/[id].ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sidthesloth92/db-portfolio/HEAD/src/pages/api/nuggets/[id].ts -------------------------------------------------------------------------------- /src/pages/api/nuggets/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sidthesloth92/db-portfolio/HEAD/src/pages/api/nuggets/index.ts -------------------------------------------------------------------------------- /src/pages/api/posts/[id].ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sidthesloth92/db-portfolio/HEAD/src/pages/api/posts/[id].ts -------------------------------------------------------------------------------- /src/pages/api/posts/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sidthesloth92/db-portfolio/HEAD/src/pages/api/posts/index.ts -------------------------------------------------------------------------------- /src/pages/api/sitemap.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sidthesloth92/db-portfolio/HEAD/src/pages/api/sitemap.ts -------------------------------------------------------------------------------- /src/pages/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sidthesloth92/db-portfolio/HEAD/src/pages/index.tsx -------------------------------------------------------------------------------- /src/pages/nuggets/[id]/[slug].tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sidthesloth92/db-portfolio/HEAD/src/pages/nuggets/[id]/[slug].tsx -------------------------------------------------------------------------------- /src/pages/nuggets/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sidthesloth92/db-portfolio/HEAD/src/pages/nuggets/index.tsx -------------------------------------------------------------------------------- /src/pages/nuggets/tag/[tag].tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sidthesloth92/db-portfolio/HEAD/src/pages/nuggets/tag/[tag].tsx -------------------------------------------------------------------------------- /src/pages/posts/[id]/[slug].tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sidthesloth92/db-portfolio/HEAD/src/pages/posts/[id]/[slug].tsx -------------------------------------------------------------------------------- /src/pages/posts/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sidthesloth92/db-portfolio/HEAD/src/pages/posts/index.tsx -------------------------------------------------------------------------------- /src/pages/posts/tag/[tag].tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sidthesloth92/db-portfolio/HEAD/src/pages/posts/tag/[tag].tsx -------------------------------------------------------------------------------- /src/pages/works/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sidthesloth92/db-portfolio/HEAD/src/pages/works/index.tsx -------------------------------------------------------------------------------- /src/posts/posts-page/PostsPage.component.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sidthesloth92/db-portfolio/HEAD/src/posts/posts-page/PostsPage.component.tsx -------------------------------------------------------------------------------- /src/posts/posts-page/PostsPage.hooks.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sidthesloth92/db-portfolio/HEAD/src/posts/posts-page/PostsPage.hooks.ts -------------------------------------------------------------------------------- /src/posts/related-post/RelatedPost.component.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sidthesloth92/db-portfolio/HEAD/src/posts/related-post/RelatedPost.component.tsx -------------------------------------------------------------------------------- /src/posts/related-posts-section/RelatedPostsSection.component.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sidthesloth92/db-portfolio/HEAD/src/posts/related-posts-section/RelatedPostsSection.component.tsx -------------------------------------------------------------------------------- /src/posts/share-section/ShareSection.component.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sidthesloth92/db-portfolio/HEAD/src/posts/share-section/ShareSection.component.tsx -------------------------------------------------------------------------------- /src/works/components/codepen-slider/CodePenSlider.component.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sidthesloth92/db-portfolio/HEAD/src/works/components/codepen-slider/CodePenSlider.component.tsx -------------------------------------------------------------------------------- /src/works/components/works-list/WorksList.component.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sidthesloth92/db-portfolio/HEAD/src/works/components/works-list/WorksList.component.tsx -------------------------------------------------------------------------------- /src/works/components/works-slider/WorksSlider.animation.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sidthesloth92/db-portfolio/HEAD/src/works/components/works-slider/WorksSlider.animation.ts -------------------------------------------------------------------------------- /src/works/components/works-slider/WorksSlider.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sidthesloth92/db-portfolio/HEAD/src/works/components/works-slider/WorksSlider.tsx -------------------------------------------------------------------------------- /tailwind.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sidthesloth92/db-portfolio/HEAD/tailwind.config.js -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sidthesloth92/db-portfolio/HEAD/tsconfig.json --------------------------------------------------------------------------------