Modern landing page and web platform for Vishal Logistics Solutions — an end-to-end logistics partner for Indian manufacturers and exporters. Provides customs clearance, freight forwarding, warehousing, and express delivery services.
Built with Astro & Tailwind CSS v4.
- Install dependencies
bun install
- Start the development server
bun run dev
- Build for production
bun run build
- Astro v5+: Fast, content-focused web framework with minimal to zero client-side JS overhead.
- Tailwind CSS v4: Utility-first CSS framework for rapid and precise styling.
/
├── public/ # Static assets (favicons, generic non-processed images)
├── src/
│ ├── components/ # Reusable UI components (Header, Hero, Services, Footer)
│ ├── layouts/ # Page layouts (`Layout.astro` standard base wrapper)
│ ├── pages/ # Astro routing (index, services, contact)
│ └── styles/ # Global CSS and Tailwind directives
├── astro.config.mjs # Astro configuration & integrations
├── tailwind.config.mjs # Tailwind Configuration
└── package.json # Project Manifest
- Seamless Page Transitions via Astro's
ClientRouter. - Micro-interactions via Tailwind classes (
group-hover,delay-*, transformations). [data-reveal]scroll animations via nativeIntersectionObserverin Astro's global lifecycle hooks.- Mobile-responsive navigation and drawers natively baked in.
This project's static assets can be deployed to any static site host out of the box (Vercel, Netlify, Cloudflare Pages, GitHub Pages) without additional SSR node adapters. Just set the build command to bun run build and publish the dist/ directory.