This directory contains the source code for the official website of the Vortyx Android application. It is built using Next.js 16 (App Router), TypeScript, Tailwind CSS v4, and Framer Motion.
🌐 Live Website: techscript.is-a.dev/Vortyx/
src/app/— Contains all App Router pages (page.tsx,/download,/features,/screenshots,/contact,/privacy,/terms, etc.).src/components/— Reusable React components:PhoneMockup.tsx— Custom modern mobile device shell that automatically crops system bars from raw screenshots.ScreenshotCarousel.tsx— Responsive sliding carousel (desktop) and swipe layout (mobile) with full-screen zoom lightbox modal.Navbar.tsx&Footer.tsx— Sticky glassmorphic header and links section.ThemeContext.tsx— Context hook for Light/Dark mode state management.
public/— Public assets, including web icons, screenshots, and the release installer APK.
To start the local development server:
- Make sure you have Node.js installed.
- Install dependencies:
npm install
- Start the development server:
npm run dev
- Open http://localhost:3000/Vortyx in your browser.
The website is configured to compile into a static HTML export suitable for hosting on GitHub Pages, Vercel, or Netlify:
This exports the static files directly into the out/ directory:
npm run buildTo publish the /out directory to the gh-pages branch (including hidden .nojekyll bypass files):
npx gh-pages -d out --dotfiles