├── src
├── env.d.ts
├── styles
│ └── global.css
├── images
│ ├── product1.png
│ ├── profilepic.png
│ └── backgrounds
│ │ ├── cityscape.png
│ │ ├── cityscape2.png
│ │ ├── cityscape3.png
│ │ ├── cityscape4.png
│ │ ├── mars-colony1.png
│ │ ├── server-room1.png
│ │ ├── server-room2.png
│ │ ├── patterned-trees.png
│ │ ├── patterned-trees2.png
│ │ ├── watercolor-pink.png
│ │ ├── vintage-computers.png
│ │ ├── vintage-computers2.png
│ │ ├── watercolor-blue-green.png
│ │ ├── watercolor-pink-blue.png
│ │ ├── watercolor-blue-green2.png
│ │ ├── watercolor-blue-green3.png
│ │ ├── watercolor-orange-centered.png
│ │ └── watercolor-pink-blue-orange.png
├── components
│ ├── LinkButton.astro
│ ├── Profile.astro
│ ├── pastel
│ │ ├── SocialLinks.astro
│ │ ├── Profile.astro
│ │ ├── LinkButton.astro
│ │ └── ProductLink.astro
│ ├── SocialLinks.astro
│ ├── modern
│ │ ├── Profile.astro
│ │ ├── SocialLinks.astro
│ │ ├── LinkCard.astro
│ │ ├── ProductLink.astro
│ │ └── ThemeToggle.astro
│ ├── Card.astro
│ ├── ProductLink.astro
│ ├── retro
│ │ ├── SocialLinks.astro
│ │ ├── Profile.astro
│ │ ├── ProductLink.astro
│ │ └── LinkCard.astro
│ ├── Navbar.astro
│ └── PostHog.astro
├── types.ts
├── pages
│ ├── retro.astro
│ ├── modern.astro
│ ├── index.astro
│ └── pastel.astro
├── layouts
│ ├── PastelLayout.astro
│ ├── Layout.astro
│ ├── ModernLayout.astro
│ └── RetroLayout.astro
└── configs
│ ├── modern-config.js
│ ├── retro-config.js
│ └── pastel-config.js
├── preview.png
├── preview-16x9.png
├── preview-16x9-2.png
├── postcss.config.js
├── .vscode
├── extensions.json
└── launch.json
├── tsconfig.json
├── astro.config.mjs
├── .gitignore
├── package.json
├── public
└── favicon.svg
├── tailwind.config.js
├── README.md
└── config.js
/src/env.d.ts:
--------------------------------------------------------------------------------
1 | ///
{config.user.bio}
16 |{config.user.bio}
13 |Software Engineer
13 |14 | {config.user.bio} 15 |
16 |{body}
22 | 23 |{description}
33 |{description}
33 | {includePriceOnSite && ( 34 |${price.toFixed(2)}
35 | )} 36 |39 | {product.description} 40 |
41 |48 | Software 49 | Engineer 50 |
51 |52 | {config.user.bio} 53 |
54 |58 | {product.description} 59 |
60 | 61 | 62 |