├── .babelrc ├── .gitignore ├── README.md ├── jsconfig.json ├── next-sitemap.config.js ├── next.config.js ├── package.json ├── public ├── android-chrome-192x192.png ├── android-chrome-512x512.png ├── apple-touch-icon.png ├── favicon-16x16.png ├── favicon-32x32.png ├── favicon.ico ├── icons │ ├── icon-arrow.svg │ ├── icon-compass.svg │ ├── icon-eth.svg │ ├── icon-instagram.svg │ ├── icon-mouse.svg │ ├── icon-restore.svg │ ├── icon-send.svg │ ├── icon-tiktok.svg │ ├── icon-twitter.svg │ ├── icon-youtube.svg │ ├── logo-foundation.svg │ └── logo.svg ├── images │ ├── home-image.jpg │ ├── logo-fg.png │ ├── logo-foundation.png │ ├── logo-instagram.png │ ├── logo-twitter.png │ ├── logo-youtube.png │ └── personal-picture.png ├── site.webmanifest └── website-preview.jpg └── src ├── components ├── about │ ├── About.js │ ├── About.style.js │ └── index.js ├── contact-form │ ├── ContactForm.js │ ├── ContactForm.style.js │ ├── index.js │ └── validationSchema.js ├── container │ └── index.js ├── footer │ ├── Footer.js │ ├── Footer.style.js │ └── index.js ├── humburger-button │ ├── HamburgerButton.js │ ├── HamburgerButton.style.js │ └── index.js ├── icon-button │ ├── IconButton.js │ ├── IconButton.style.js │ └── index.js ├── image │ ├── Image.js │ ├── Image.style.js │ └── index.js ├── input │ ├── Input.js │ ├── Input.style.js │ └── index.js ├── intro │ ├── Intro.js │ ├── Intro.style.js │ └── index.js ├── layout │ └── index.js ├── link-box │ ├── LinkBox.js │ ├── LinkBox.styled.js │ └── index.js ├── nav-link │ ├── NavLink.js │ └── NavLink.style.js ├── navigation │ ├── Navigation.js │ ├── Navigation.style.js │ └── index.js ├── nft-card │ ├── NftCard.js │ ├── NftCard.style.js │ └── index.js ├── photo │ ├── Photo.js │ ├── Photo.style.js │ └── index.js ├── placeholder │ ├── Placeholder.js │ ├── Placeholder.style.js │ └── index.js ├── rounded-button │ ├── RoundedButton.js │ ├── RoundedButton.style.js │ └── index.js ├── scroll-top-fab │ ├── ScrollTopFab.js │ ├── ScrollTopFab.style.js │ └── index.js ├── section │ └── index.js ├── select │ ├── Select.js │ ├── Select.style.js │ └── index.js ├── socials │ ├── Socials.js │ ├── Socials.style.js │ └── index.js └── spinner │ ├── Spinner.js │ ├── Spinner.style.js │ └── index.js ├── config ├── firebase.js └── nodemailder.js ├── hooks └── useMediaQuery.js ├── lib └── api.js ├── pages ├── _app.js ├── _document.js ├── api │ └── contact.js ├── contact │ └── index.js ├── index.js ├── links │ └── index.js ├── nft │ └── index.js └── portfolio │ └── index.js ├── styles ├── animations │ └── pageVariants.js ├── globalStyles.js └── pages │ ├── Contact.style.js │ ├── Links.style.js │ ├── Nft.style.js │ └── Portfolio.style.js ├── theme ├── breakpoints.js ├── index.js ├── palette.js └── typography.js └── utils ├── filterArtworks.js ├── getAge.js ├── index.js ├── sortByDate.js └── truncateString.js /.babelrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artemmatiushenko1/personal-website/HEAD/.babelrc -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artemmatiushenko1/personal-website/HEAD/.gitignore -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artemmatiushenko1/personal-website/HEAD/README.md -------------------------------------------------------------------------------- /jsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artemmatiushenko1/personal-website/HEAD/jsconfig.json -------------------------------------------------------------------------------- /next-sitemap.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artemmatiushenko1/personal-website/HEAD/next-sitemap.config.js -------------------------------------------------------------------------------- /next.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artemmatiushenko1/personal-website/HEAD/next.config.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artemmatiushenko1/personal-website/HEAD/package.json -------------------------------------------------------------------------------- /public/android-chrome-192x192.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artemmatiushenko1/personal-website/HEAD/public/android-chrome-192x192.png -------------------------------------------------------------------------------- /public/android-chrome-512x512.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artemmatiushenko1/personal-website/HEAD/public/android-chrome-512x512.png -------------------------------------------------------------------------------- /public/apple-touch-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artemmatiushenko1/personal-website/HEAD/public/apple-touch-icon.png -------------------------------------------------------------------------------- /public/favicon-16x16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artemmatiushenko1/personal-website/HEAD/public/favicon-16x16.png -------------------------------------------------------------------------------- /public/favicon-32x32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artemmatiushenko1/personal-website/HEAD/public/favicon-32x32.png -------------------------------------------------------------------------------- /public/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artemmatiushenko1/personal-website/HEAD/public/favicon.ico -------------------------------------------------------------------------------- /public/icons/icon-arrow.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artemmatiushenko1/personal-website/HEAD/public/icons/icon-arrow.svg -------------------------------------------------------------------------------- /public/icons/icon-compass.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artemmatiushenko1/personal-website/HEAD/public/icons/icon-compass.svg -------------------------------------------------------------------------------- /public/icons/icon-eth.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artemmatiushenko1/personal-website/HEAD/public/icons/icon-eth.svg -------------------------------------------------------------------------------- /public/icons/icon-instagram.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artemmatiushenko1/personal-website/HEAD/public/icons/icon-instagram.svg -------------------------------------------------------------------------------- /public/icons/icon-mouse.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artemmatiushenko1/personal-website/HEAD/public/icons/icon-mouse.svg -------------------------------------------------------------------------------- /public/icons/icon-restore.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artemmatiushenko1/personal-website/HEAD/public/icons/icon-restore.svg -------------------------------------------------------------------------------- /public/icons/icon-send.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artemmatiushenko1/personal-website/HEAD/public/icons/icon-send.svg -------------------------------------------------------------------------------- /public/icons/icon-tiktok.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artemmatiushenko1/personal-website/HEAD/public/icons/icon-tiktok.svg -------------------------------------------------------------------------------- /public/icons/icon-twitter.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artemmatiushenko1/personal-website/HEAD/public/icons/icon-twitter.svg -------------------------------------------------------------------------------- /public/icons/icon-youtube.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artemmatiushenko1/personal-website/HEAD/public/icons/icon-youtube.svg -------------------------------------------------------------------------------- /public/icons/logo-foundation.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artemmatiushenko1/personal-website/HEAD/public/icons/logo-foundation.svg -------------------------------------------------------------------------------- /public/icons/logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artemmatiushenko1/personal-website/HEAD/public/icons/logo.svg -------------------------------------------------------------------------------- /public/images/home-image.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artemmatiushenko1/personal-website/HEAD/public/images/home-image.jpg -------------------------------------------------------------------------------- /public/images/logo-fg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artemmatiushenko1/personal-website/HEAD/public/images/logo-fg.png -------------------------------------------------------------------------------- /public/images/logo-foundation.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artemmatiushenko1/personal-website/HEAD/public/images/logo-foundation.png -------------------------------------------------------------------------------- /public/images/logo-instagram.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artemmatiushenko1/personal-website/HEAD/public/images/logo-instagram.png -------------------------------------------------------------------------------- /public/images/logo-twitter.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artemmatiushenko1/personal-website/HEAD/public/images/logo-twitter.png -------------------------------------------------------------------------------- /public/images/logo-youtube.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artemmatiushenko1/personal-website/HEAD/public/images/logo-youtube.png -------------------------------------------------------------------------------- /public/images/personal-picture.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artemmatiushenko1/personal-website/HEAD/public/images/personal-picture.png -------------------------------------------------------------------------------- /public/site.webmanifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artemmatiushenko1/personal-website/HEAD/public/site.webmanifest -------------------------------------------------------------------------------- /public/website-preview.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artemmatiushenko1/personal-website/HEAD/public/website-preview.jpg -------------------------------------------------------------------------------- /src/components/about/About.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artemmatiushenko1/personal-website/HEAD/src/components/about/About.js -------------------------------------------------------------------------------- /src/components/about/About.style.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artemmatiushenko1/personal-website/HEAD/src/components/about/About.style.js -------------------------------------------------------------------------------- /src/components/about/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artemmatiushenko1/personal-website/HEAD/src/components/about/index.js -------------------------------------------------------------------------------- /src/components/contact-form/ContactForm.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artemmatiushenko1/personal-website/HEAD/src/components/contact-form/ContactForm.js -------------------------------------------------------------------------------- /src/components/contact-form/ContactForm.style.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artemmatiushenko1/personal-website/HEAD/src/components/contact-form/ContactForm.style.js -------------------------------------------------------------------------------- /src/components/contact-form/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artemmatiushenko1/personal-website/HEAD/src/components/contact-form/index.js -------------------------------------------------------------------------------- /src/components/contact-form/validationSchema.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artemmatiushenko1/personal-website/HEAD/src/components/contact-form/validationSchema.js -------------------------------------------------------------------------------- /src/components/container/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artemmatiushenko1/personal-website/HEAD/src/components/container/index.js -------------------------------------------------------------------------------- /src/components/footer/Footer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artemmatiushenko1/personal-website/HEAD/src/components/footer/Footer.js -------------------------------------------------------------------------------- /src/components/footer/Footer.style.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artemmatiushenko1/personal-website/HEAD/src/components/footer/Footer.style.js -------------------------------------------------------------------------------- /src/components/footer/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artemmatiushenko1/personal-website/HEAD/src/components/footer/index.js -------------------------------------------------------------------------------- /src/components/humburger-button/HamburgerButton.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artemmatiushenko1/personal-website/HEAD/src/components/humburger-button/HamburgerButton.js -------------------------------------------------------------------------------- /src/components/humburger-button/HamburgerButton.style.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artemmatiushenko1/personal-website/HEAD/src/components/humburger-button/HamburgerButton.style.js -------------------------------------------------------------------------------- /src/components/humburger-button/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artemmatiushenko1/personal-website/HEAD/src/components/humburger-button/index.js -------------------------------------------------------------------------------- /src/components/icon-button/IconButton.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artemmatiushenko1/personal-website/HEAD/src/components/icon-button/IconButton.js -------------------------------------------------------------------------------- /src/components/icon-button/IconButton.style.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artemmatiushenko1/personal-website/HEAD/src/components/icon-button/IconButton.style.js -------------------------------------------------------------------------------- /src/components/icon-button/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artemmatiushenko1/personal-website/HEAD/src/components/icon-button/index.js -------------------------------------------------------------------------------- /src/components/image/Image.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artemmatiushenko1/personal-website/HEAD/src/components/image/Image.js -------------------------------------------------------------------------------- /src/components/image/Image.style.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artemmatiushenko1/personal-website/HEAD/src/components/image/Image.style.js -------------------------------------------------------------------------------- /src/components/image/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artemmatiushenko1/personal-website/HEAD/src/components/image/index.js -------------------------------------------------------------------------------- /src/components/input/Input.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artemmatiushenko1/personal-website/HEAD/src/components/input/Input.js -------------------------------------------------------------------------------- /src/components/input/Input.style.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artemmatiushenko1/personal-website/HEAD/src/components/input/Input.style.js -------------------------------------------------------------------------------- /src/components/input/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artemmatiushenko1/personal-website/HEAD/src/components/input/index.js -------------------------------------------------------------------------------- /src/components/intro/Intro.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artemmatiushenko1/personal-website/HEAD/src/components/intro/Intro.js -------------------------------------------------------------------------------- /src/components/intro/Intro.style.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artemmatiushenko1/personal-website/HEAD/src/components/intro/Intro.style.js -------------------------------------------------------------------------------- /src/components/intro/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artemmatiushenko1/personal-website/HEAD/src/components/intro/index.js -------------------------------------------------------------------------------- /src/components/layout/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artemmatiushenko1/personal-website/HEAD/src/components/layout/index.js -------------------------------------------------------------------------------- /src/components/link-box/LinkBox.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artemmatiushenko1/personal-website/HEAD/src/components/link-box/LinkBox.js -------------------------------------------------------------------------------- /src/components/link-box/LinkBox.styled.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artemmatiushenko1/personal-website/HEAD/src/components/link-box/LinkBox.styled.js -------------------------------------------------------------------------------- /src/components/link-box/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artemmatiushenko1/personal-website/HEAD/src/components/link-box/index.js -------------------------------------------------------------------------------- /src/components/nav-link/NavLink.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artemmatiushenko1/personal-website/HEAD/src/components/nav-link/NavLink.js -------------------------------------------------------------------------------- /src/components/nav-link/NavLink.style.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artemmatiushenko1/personal-website/HEAD/src/components/nav-link/NavLink.style.js -------------------------------------------------------------------------------- /src/components/navigation/Navigation.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artemmatiushenko1/personal-website/HEAD/src/components/navigation/Navigation.js -------------------------------------------------------------------------------- /src/components/navigation/Navigation.style.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artemmatiushenko1/personal-website/HEAD/src/components/navigation/Navigation.style.js -------------------------------------------------------------------------------- /src/components/navigation/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artemmatiushenko1/personal-website/HEAD/src/components/navigation/index.js -------------------------------------------------------------------------------- /src/components/nft-card/NftCard.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artemmatiushenko1/personal-website/HEAD/src/components/nft-card/NftCard.js -------------------------------------------------------------------------------- /src/components/nft-card/NftCard.style.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artemmatiushenko1/personal-website/HEAD/src/components/nft-card/NftCard.style.js -------------------------------------------------------------------------------- /src/components/nft-card/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artemmatiushenko1/personal-website/HEAD/src/components/nft-card/index.js -------------------------------------------------------------------------------- /src/components/photo/Photo.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artemmatiushenko1/personal-website/HEAD/src/components/photo/Photo.js -------------------------------------------------------------------------------- /src/components/photo/Photo.style.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artemmatiushenko1/personal-website/HEAD/src/components/photo/Photo.style.js -------------------------------------------------------------------------------- /src/components/photo/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artemmatiushenko1/personal-website/HEAD/src/components/photo/index.js -------------------------------------------------------------------------------- /src/components/placeholder/Placeholder.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artemmatiushenko1/personal-website/HEAD/src/components/placeholder/Placeholder.js -------------------------------------------------------------------------------- /src/components/placeholder/Placeholder.style.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artemmatiushenko1/personal-website/HEAD/src/components/placeholder/Placeholder.style.js -------------------------------------------------------------------------------- /src/components/placeholder/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artemmatiushenko1/personal-website/HEAD/src/components/placeholder/index.js -------------------------------------------------------------------------------- /src/components/rounded-button/RoundedButton.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artemmatiushenko1/personal-website/HEAD/src/components/rounded-button/RoundedButton.js -------------------------------------------------------------------------------- /src/components/rounded-button/RoundedButton.style.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artemmatiushenko1/personal-website/HEAD/src/components/rounded-button/RoundedButton.style.js -------------------------------------------------------------------------------- /src/components/rounded-button/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artemmatiushenko1/personal-website/HEAD/src/components/rounded-button/index.js -------------------------------------------------------------------------------- /src/components/scroll-top-fab/ScrollTopFab.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artemmatiushenko1/personal-website/HEAD/src/components/scroll-top-fab/ScrollTopFab.js -------------------------------------------------------------------------------- /src/components/scroll-top-fab/ScrollTopFab.style.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artemmatiushenko1/personal-website/HEAD/src/components/scroll-top-fab/ScrollTopFab.style.js -------------------------------------------------------------------------------- /src/components/scroll-top-fab/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artemmatiushenko1/personal-website/HEAD/src/components/scroll-top-fab/index.js -------------------------------------------------------------------------------- /src/components/section/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artemmatiushenko1/personal-website/HEAD/src/components/section/index.js -------------------------------------------------------------------------------- /src/components/select/Select.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artemmatiushenko1/personal-website/HEAD/src/components/select/Select.js -------------------------------------------------------------------------------- /src/components/select/Select.style.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artemmatiushenko1/personal-website/HEAD/src/components/select/Select.style.js -------------------------------------------------------------------------------- /src/components/select/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artemmatiushenko1/personal-website/HEAD/src/components/select/index.js -------------------------------------------------------------------------------- /src/components/socials/Socials.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artemmatiushenko1/personal-website/HEAD/src/components/socials/Socials.js -------------------------------------------------------------------------------- /src/components/socials/Socials.style.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artemmatiushenko1/personal-website/HEAD/src/components/socials/Socials.style.js -------------------------------------------------------------------------------- /src/components/socials/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artemmatiushenko1/personal-website/HEAD/src/components/socials/index.js -------------------------------------------------------------------------------- /src/components/spinner/Spinner.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artemmatiushenko1/personal-website/HEAD/src/components/spinner/Spinner.js -------------------------------------------------------------------------------- /src/components/spinner/Spinner.style.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artemmatiushenko1/personal-website/HEAD/src/components/spinner/Spinner.style.js -------------------------------------------------------------------------------- /src/components/spinner/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artemmatiushenko1/personal-website/HEAD/src/components/spinner/index.js -------------------------------------------------------------------------------- /src/config/firebase.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artemmatiushenko1/personal-website/HEAD/src/config/firebase.js -------------------------------------------------------------------------------- /src/config/nodemailder.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artemmatiushenko1/personal-website/HEAD/src/config/nodemailder.js -------------------------------------------------------------------------------- /src/hooks/useMediaQuery.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artemmatiushenko1/personal-website/HEAD/src/hooks/useMediaQuery.js -------------------------------------------------------------------------------- /src/lib/api.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artemmatiushenko1/personal-website/HEAD/src/lib/api.js -------------------------------------------------------------------------------- /src/pages/_app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artemmatiushenko1/personal-website/HEAD/src/pages/_app.js -------------------------------------------------------------------------------- /src/pages/_document.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artemmatiushenko1/personal-website/HEAD/src/pages/_document.js -------------------------------------------------------------------------------- /src/pages/api/contact.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artemmatiushenko1/personal-website/HEAD/src/pages/api/contact.js -------------------------------------------------------------------------------- /src/pages/contact/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artemmatiushenko1/personal-website/HEAD/src/pages/contact/index.js -------------------------------------------------------------------------------- /src/pages/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artemmatiushenko1/personal-website/HEAD/src/pages/index.js -------------------------------------------------------------------------------- /src/pages/links/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artemmatiushenko1/personal-website/HEAD/src/pages/links/index.js -------------------------------------------------------------------------------- /src/pages/nft/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artemmatiushenko1/personal-website/HEAD/src/pages/nft/index.js -------------------------------------------------------------------------------- /src/pages/portfolio/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artemmatiushenko1/personal-website/HEAD/src/pages/portfolio/index.js -------------------------------------------------------------------------------- /src/styles/animations/pageVariants.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artemmatiushenko1/personal-website/HEAD/src/styles/animations/pageVariants.js -------------------------------------------------------------------------------- /src/styles/globalStyles.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artemmatiushenko1/personal-website/HEAD/src/styles/globalStyles.js -------------------------------------------------------------------------------- /src/styles/pages/Contact.style.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artemmatiushenko1/personal-website/HEAD/src/styles/pages/Contact.style.js -------------------------------------------------------------------------------- /src/styles/pages/Links.style.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artemmatiushenko1/personal-website/HEAD/src/styles/pages/Links.style.js -------------------------------------------------------------------------------- /src/styles/pages/Nft.style.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artemmatiushenko1/personal-website/HEAD/src/styles/pages/Nft.style.js -------------------------------------------------------------------------------- /src/styles/pages/Portfolio.style.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artemmatiushenko1/personal-website/HEAD/src/styles/pages/Portfolio.style.js -------------------------------------------------------------------------------- /src/theme/breakpoints.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artemmatiushenko1/personal-website/HEAD/src/theme/breakpoints.js -------------------------------------------------------------------------------- /src/theme/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artemmatiushenko1/personal-website/HEAD/src/theme/index.js -------------------------------------------------------------------------------- /src/theme/palette.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artemmatiushenko1/personal-website/HEAD/src/theme/palette.js -------------------------------------------------------------------------------- /src/theme/typography.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artemmatiushenko1/personal-website/HEAD/src/theme/typography.js -------------------------------------------------------------------------------- /src/utils/filterArtworks.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artemmatiushenko1/personal-website/HEAD/src/utils/filterArtworks.js -------------------------------------------------------------------------------- /src/utils/getAge.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artemmatiushenko1/personal-website/HEAD/src/utils/getAge.js -------------------------------------------------------------------------------- /src/utils/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artemmatiushenko1/personal-website/HEAD/src/utils/index.js -------------------------------------------------------------------------------- /src/utils/sortByDate.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artemmatiushenko1/personal-website/HEAD/src/utils/sortByDate.js -------------------------------------------------------------------------------- /src/utils/truncateString.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artemmatiushenko1/personal-website/HEAD/src/utils/truncateString.js --------------------------------------------------------------------------------