├── .all-contributorsrc ├── .eslintrc.js ├── .github └── workflows │ └── ci-check.yaml ├── .gitignore ├── .nvmrc ├── .prettier.config.cjs ├── .vscode ├── extensions.json └── launch.json ├── LICENSE ├── README.md ├── astro.config.mjs ├── package.json ├── public ├── favicon.svg ├── opengraph-image.jpg └── profile.webp ├── src ├── components │ ├── Header.astro │ ├── PostCard.astro │ ├── ProjectCard.astro │ ├── SocialLinks.astro │ ├── seo │ │ └── SEOTags.astro │ └── shared │ │ ├── BlurCircle.astro │ │ └── Link.astro ├── content │ ├── config.ts │ └── posts │ │ ├── 01-the-power-of-react-hooks copy.md │ │ └── 02-untitled.md ├── data │ ├── config.ts │ ├── presentation.ts │ ├── projects.ts │ └── theme.ts ├── env.d.ts ├── layouts │ └── Layout.astro ├── pages │ ├── index.astro │ ├── posts │ │ ├── [slug].astro │ │ └── index.astro │ └── sitemap.xml.ts ├── styles │ ├── post.css │ └── tailwind.css └── utils │ ├── convertAsteriskToStrongTag.ts │ ├── formatDate.ts │ ├── mapVariants.ts │ ├── removeTrailingSlash.ts │ └── types │ ├── HeadTags.ts │ └── tailwind.ts ├── tailwind.config.cjs └── tsconfig.json /.all-contributorsrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaeWolff/astro-portfolio-template/HEAD/.all-contributorsrc -------------------------------------------------------------------------------- /.eslintrc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaeWolff/astro-portfolio-template/HEAD/.eslintrc.js -------------------------------------------------------------------------------- /.github/workflows/ci-check.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaeWolff/astro-portfolio-template/HEAD/.github/workflows/ci-check.yaml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaeWolff/astro-portfolio-template/HEAD/.gitignore -------------------------------------------------------------------------------- /.nvmrc: -------------------------------------------------------------------------------- 1 | 18.14.1 -------------------------------------------------------------------------------- /.prettier.config.cjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaeWolff/astro-portfolio-template/HEAD/.prettier.config.cjs -------------------------------------------------------------------------------- /.vscode/extensions.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaeWolff/astro-portfolio-template/HEAD/.vscode/extensions.json -------------------------------------------------------------------------------- /.vscode/launch.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaeWolff/astro-portfolio-template/HEAD/.vscode/launch.json -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaeWolff/astro-portfolio-template/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaeWolff/astro-portfolio-template/HEAD/README.md -------------------------------------------------------------------------------- /astro.config.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaeWolff/astro-portfolio-template/HEAD/astro.config.mjs -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaeWolff/astro-portfolio-template/HEAD/package.json -------------------------------------------------------------------------------- /public/favicon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaeWolff/astro-portfolio-template/HEAD/public/favicon.svg -------------------------------------------------------------------------------- /public/opengraph-image.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaeWolff/astro-portfolio-template/HEAD/public/opengraph-image.jpg -------------------------------------------------------------------------------- /public/profile.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaeWolff/astro-portfolio-template/HEAD/public/profile.webp -------------------------------------------------------------------------------- /src/components/Header.astro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaeWolff/astro-portfolio-template/HEAD/src/components/Header.astro -------------------------------------------------------------------------------- /src/components/PostCard.astro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaeWolff/astro-portfolio-template/HEAD/src/components/PostCard.astro -------------------------------------------------------------------------------- /src/components/ProjectCard.astro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaeWolff/astro-portfolio-template/HEAD/src/components/ProjectCard.astro -------------------------------------------------------------------------------- /src/components/SocialLinks.astro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaeWolff/astro-portfolio-template/HEAD/src/components/SocialLinks.astro -------------------------------------------------------------------------------- /src/components/seo/SEOTags.astro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaeWolff/astro-portfolio-template/HEAD/src/components/seo/SEOTags.astro -------------------------------------------------------------------------------- /src/components/shared/BlurCircle.astro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaeWolff/astro-portfolio-template/HEAD/src/components/shared/BlurCircle.astro -------------------------------------------------------------------------------- /src/components/shared/Link.astro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaeWolff/astro-portfolio-template/HEAD/src/components/shared/Link.astro -------------------------------------------------------------------------------- /src/content/config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaeWolff/astro-portfolio-template/HEAD/src/content/config.ts -------------------------------------------------------------------------------- /src/content/posts/01-the-power-of-react-hooks copy.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaeWolff/astro-portfolio-template/HEAD/src/content/posts/01-the-power-of-react-hooks copy.md -------------------------------------------------------------------------------- /src/content/posts/02-untitled.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaeWolff/astro-portfolio-template/HEAD/src/content/posts/02-untitled.md -------------------------------------------------------------------------------- /src/data/config.ts: -------------------------------------------------------------------------------- 1 | export const SITE_URL = "https://demo.maxencewolff.com/"; 2 | -------------------------------------------------------------------------------- /src/data/presentation.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaeWolff/astro-portfolio-template/HEAD/src/data/presentation.ts -------------------------------------------------------------------------------- /src/data/projects.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaeWolff/astro-portfolio-template/HEAD/src/data/projects.ts -------------------------------------------------------------------------------- /src/data/theme.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaeWolff/astro-portfolio-template/HEAD/src/data/theme.ts -------------------------------------------------------------------------------- /src/env.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaeWolff/astro-portfolio-template/HEAD/src/env.d.ts -------------------------------------------------------------------------------- /src/layouts/Layout.astro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaeWolff/astro-portfolio-template/HEAD/src/layouts/Layout.astro -------------------------------------------------------------------------------- /src/pages/index.astro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaeWolff/astro-portfolio-template/HEAD/src/pages/index.astro -------------------------------------------------------------------------------- /src/pages/posts/[slug].astro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaeWolff/astro-portfolio-template/HEAD/src/pages/posts/[slug].astro -------------------------------------------------------------------------------- /src/pages/posts/index.astro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaeWolff/astro-portfolio-template/HEAD/src/pages/posts/index.astro -------------------------------------------------------------------------------- /src/pages/sitemap.xml.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaeWolff/astro-portfolio-template/HEAD/src/pages/sitemap.xml.ts -------------------------------------------------------------------------------- /src/styles/post.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaeWolff/astro-portfolio-template/HEAD/src/styles/post.css -------------------------------------------------------------------------------- /src/styles/tailwind.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaeWolff/astro-portfolio-template/HEAD/src/styles/tailwind.css -------------------------------------------------------------------------------- /src/utils/convertAsteriskToStrongTag.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaeWolff/astro-portfolio-template/HEAD/src/utils/convertAsteriskToStrongTag.ts -------------------------------------------------------------------------------- /src/utils/formatDate.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaeWolff/astro-portfolio-template/HEAD/src/utils/formatDate.ts -------------------------------------------------------------------------------- /src/utils/mapVariants.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaeWolff/astro-portfolio-template/HEAD/src/utils/mapVariants.ts -------------------------------------------------------------------------------- /src/utils/removeTrailingSlash.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaeWolff/astro-portfolio-template/HEAD/src/utils/removeTrailingSlash.ts -------------------------------------------------------------------------------- /src/utils/types/HeadTags.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaeWolff/astro-portfolio-template/HEAD/src/utils/types/HeadTags.ts -------------------------------------------------------------------------------- /src/utils/types/tailwind.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaeWolff/astro-portfolio-template/HEAD/src/utils/types/tailwind.ts -------------------------------------------------------------------------------- /tailwind.config.cjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaeWolff/astro-portfolio-template/HEAD/tailwind.config.cjs -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaeWolff/astro-portfolio-template/HEAD/tsconfig.json --------------------------------------------------------------------------------