Travelpe is a modern, premium web application built for a forward-thinking travel and visa consultation agency. Designed with a focus on clean aesthetics and performance, it helps users seamlessly navigate complex visa processes and discover destinations tailored to their unique travel profiles. Visit the site here: https://travelope.uk/
- Premium Modern Design: A sophisticated, glassmorphic UI featuring a dark green (
#0A2E1E) and gold (#D4AF37) color palette. - Blazing Fast Performance: Built on top of Astro's island architecture, ensuring zero unnecessary JavaScript and lightning-fast page loads.
- Responsive Layout: Fully optimized for mobile, tablet, and desktop viewing with an intuitive mobile hamburger menu.
- SEO Optimized: Clean semantic HTML and customizable metadata for better search engine visibility.
- Framework: Astro - The web framework for content-driven websites.
- Styling: Tailwind CSS - Utility-first CSS framework for rapid UI development.
- Typography: Google Fonts - Using Inter for clean body text and Plus Jakarta Sans for premium headings.
npm create astro@latest -- --template minimal🧑🚀 Seasoned astronaut? Delete this file. Have fun!
Inside of your Astro project, you'll see the following folders and files:
/
├── public/
├── src/
│ └── pages/
│ └── index.astro
└── package.json
Astro looks for .astro or .md files in the src/pages/ directory. Each page is exposed as a route based on its file name.
There's nothing special about src/components/, but that's where we like to put any Astro/React/Vue/Svelte/Preact components.
Any static assets, like images, can be placed in the public/ directory.
All commands are run from the root of the project, from a terminal:
| Command | Action |
|---|---|
npm install |
Installs dependencies |
npm run dev |
Starts local dev server at localhost:4321 |
npm run build |
Build your production site to ./dist/ |
npm run preview |
Preview your build locally, before deploying |
npm run astro ... |
Run CLI commands like astro add, astro check |
npm run astro -- --help |
Get help using the Astro CLI |