A modern landing page for the CryptoScanner GUI project - a post-quantum cryptography transition detection tool.
- 🎨 Modern dark theme with cyan/teal and purple accents
- 📱 Fully responsive design
- ⚡ Built with Next.js 14 and TypeScript
- 🎯 Optimized for Vercel deployment
- 🖼️ Screenshot gallery
- 📊 Feature highlights
- 🌐 Cross-platform support information
- Node.js 18+
- npm or yarn
npm installnpm run devOpen http://localhost:3000 in your browser.
npm run buildThis creates an optimized production build in the out directory.
- Install Vercel CLI:
npm install -g vercel- Deploy:
vercel- Push your code to GitHub
- Go to vercel.com
- Click "Import Project"
- Select your repository
- Vercel will automatically detect Next.js and deploy
├── public/
│ └── images/ # Screenshot images
├── src/
│ └── app/
│ ├── layout.tsx # Root layout
│ ├── page.tsx # Main landing page
│ └── globals.css # Global styles
├── next.config.js # Next.js configuration
├── tailwind.config.ts # Tailwind CSS configuration
└── package.json
- Next.js 14 - React framework with App Router
- TypeScript - Type safety
- Tailwind CSS - Utility-first CSS framework
- Vercel - Deployment platform
Edit the color scheme in tailwind.config.ts:
colors: {
primary: {
DEFAULT: '#00D9FF', // Cyan
// ...
},
secondary: {
DEFAULT: '#9C27B0', // Purple
// ...
}
}Edit the content in src/app/page.tsx.
This project is open source and available under the MIT License.
CryptoScanner is a detection and analysis tool designed to identify cryptographic algorithms that require transition to post-quantum cryptography (PQC) standards. Visit the main repository for more information.