├── .gitignore ├── LICENSE.md ├── README.md ├── assets ├── preview-about.png └── preview-projects.png ├── astro.config.mjs ├── package.json ├── public ├── img │ ├── logo.svg │ └── meta.png └── robots.txt ├── src ├── assets │ └── profile.png ├── components │ ├── Contact.astro │ ├── ContentAbout.astro │ ├── ContentLink.astro │ ├── ContentProjects.astro │ ├── Profile.astro │ ├── SocialIcon.astro │ └── Socials.astro ├── layouts │ └── Layout.astro ├── pages │ └── index.astro └── styles │ └── global.scss ├── tailwind.config.js └── tsconfig.json /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devidevio/astro-developer-portfolio-template/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devidevio/astro-developer-portfolio-template/HEAD/LICENSE.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devidevio/astro-developer-portfolio-template/HEAD/README.md -------------------------------------------------------------------------------- /assets/preview-about.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devidevio/astro-developer-portfolio-template/HEAD/assets/preview-about.png -------------------------------------------------------------------------------- /assets/preview-projects.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devidevio/astro-developer-portfolio-template/HEAD/assets/preview-projects.png -------------------------------------------------------------------------------- /astro.config.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devidevio/astro-developer-portfolio-template/HEAD/astro.config.mjs -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devidevio/astro-developer-portfolio-template/HEAD/package.json -------------------------------------------------------------------------------- /public/img/logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devidevio/astro-developer-portfolio-template/HEAD/public/img/logo.svg -------------------------------------------------------------------------------- /public/img/meta.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devidevio/astro-developer-portfolio-template/HEAD/public/img/meta.png -------------------------------------------------------------------------------- /public/robots.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devidevio/astro-developer-portfolio-template/HEAD/public/robots.txt -------------------------------------------------------------------------------- /src/assets/profile.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devidevio/astro-developer-portfolio-template/HEAD/src/assets/profile.png -------------------------------------------------------------------------------- /src/components/Contact.astro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devidevio/astro-developer-portfolio-template/HEAD/src/components/Contact.astro -------------------------------------------------------------------------------- /src/components/ContentAbout.astro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devidevio/astro-developer-portfolio-template/HEAD/src/components/ContentAbout.astro -------------------------------------------------------------------------------- /src/components/ContentLink.astro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devidevio/astro-developer-portfolio-template/HEAD/src/components/ContentLink.astro -------------------------------------------------------------------------------- /src/components/ContentProjects.astro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devidevio/astro-developer-portfolio-template/HEAD/src/components/ContentProjects.astro -------------------------------------------------------------------------------- /src/components/Profile.astro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devidevio/astro-developer-portfolio-template/HEAD/src/components/Profile.astro -------------------------------------------------------------------------------- /src/components/SocialIcon.astro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devidevio/astro-developer-portfolio-template/HEAD/src/components/SocialIcon.astro -------------------------------------------------------------------------------- /src/components/Socials.astro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devidevio/astro-developer-portfolio-template/HEAD/src/components/Socials.astro -------------------------------------------------------------------------------- /src/layouts/Layout.astro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devidevio/astro-developer-portfolio-template/HEAD/src/layouts/Layout.astro -------------------------------------------------------------------------------- /src/pages/index.astro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devidevio/astro-developer-portfolio-template/HEAD/src/pages/index.astro -------------------------------------------------------------------------------- /src/styles/global.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devidevio/astro-developer-portfolio-template/HEAD/src/styles/global.scss -------------------------------------------------------------------------------- /tailwind.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devidevio/astro-developer-portfolio-template/HEAD/tailwind.config.js -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devidevio/astro-developer-portfolio-template/HEAD/tsconfig.json --------------------------------------------------------------------------------