Skip to content

MK-codes365/zerotrace

Folders and files

NameName
Last commit message
Last commit date

Latest commit

Β 

History

2 Commits
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 

Repository files navigation

🌐 ZeroTrace Landing Page

ZeroTrace Banner

Modern Landing Page for Professional Data Wiping Solution

Deploy with Vercel React Vite

Live Demo β€’ Documentation β€’ Download


πŸ“‹ Table of Contents


🎯 Overview

A stunning, modern landing page built with React and Vite, showcasing the ZeroTrace data wiping tool. Features a cyber-security aesthetic with neon accents, smooth animations, and responsive design.

🌟 Live Preview

Visit zerotrace.vercel.app to see it in action!


✨ Features

🎨 Design Features

βœ… Modern Cyber-Security Aesthetic

  • Dark theme with neon blue/purple gradients
  • Glassmorphism effects
  • Smooth hover animations
  • Responsive mobile-first design

βœ… Premium UI Elements

  • Hero section with animated badge
  • Feature cards with icons
  • Multi-platform download buttons
  • Sticky navigation (if implemented)

βœ… Micro-Interactions

  • Hover effects on buttons
  • Card elevation on hover
  • Smooth scroll animations
  • Responsive transitions

πŸ“± Responsive Design

  • βœ… Desktop (1920px+)
  • βœ… Laptop (1024px - 1920px)
  • βœ… Tablet (768px - 1024px)
  • βœ… Mobile (320px - 768px)

πŸ› οΈ Tech Stack

Frontend Framework

React Vite JavaScript

Styling & Design

CSS3 Google Fonts

Deployment

Vercel

πŸ“¦ Dependencies

Package Version Purpose
React 18.2.0 UI library
React-DOM 18.2.0 DOM rendering
Vite 4.4.0 Build tool & dev server

🎨 Fonts

  • Primary: Inter (Google Fonts)
  • Fallback: system-ui, -apple-system, BlinkMacSystemFont

πŸš€ Getting Started

Prerequisites

  • Node.js (v16.0.0 or higher)
  • npm or yarn

Installation

# Clone repository
git clone https://github.com/yourusername/zerotrace.git
cd zerotrace/website

# Install dependencies
npm install

# Start development server
npm run dev

Visit http://localhost:5173 to see the site!

Available Scripts

{
  "dev": "vite", // Start dev server
  "build": "vite build", // Build for production
  "preview": "vite preview" // Preview production build
}

🌐 Deployment on Vercel

Why Vercel?

Vercel is the perfect platform for React apps:

βœ… Zero Configuration

  • Auto-detects Vite/React
  • Optimizes builds automatically
  • No setup required

βœ… Lightning Fast

  • Global CDN (Edge Network)
  • Sub-second cold starts
  • HTTP/3 support

βœ… Developer Experience

  • Git integration (auto-deploy on push)
  • Preview deployments for PRs
  • Instant rollbacks

βœ… Free Tier Includes:

  • βœ… Unlimited deployments
  • βœ… 100GB bandwidth/month
  • βœ… Automatic HTTPS
  • βœ… Custom domains
  • βœ… Analytics

Deployment Steps

Method 1: Deploy via GitHub (Recommended)

  1. Push to GitHub:

    git init
    git add .
    git commit -m "Initial commit"
    git remote add origin https://github.com/yourusername/zerotrace.git
    git push -u origin main
  2. Connect to Vercel:

    • Go to vercel.com
    • Click "New Project"
    • Import your GitHub repository
    • Select website/ as root directory
    • Click Deploy!
  3. Done!

    • Your site is live at https://zerotrace.vercel.app
    • Every push to main auto-deploys
    • Preview URLs for each PR

Method 2: Deploy via CLI

# Install Vercel CLI
npm install -g vercel

# Navigate to website folder
cd website

# Deploy
vercel

# Follow prompts:
# - Link to existing project? No
# - Project name: zerotrace
# - Directory: ./
# - Build command: npm run build
# - Output directory: dist

Method 3: One-Click Deploy

Click this button:

Deploy with Vercel


Vercel Configuration

Create vercel.json in website/ folder:

{
  "buildCommand": "npm run build",
  "outputDirectory": "dist",
  "devCommand": "npm run dev",
  "installCommand": "npm install",
  "framework": "vite",
  "rewrites": [{ "source": "/(.*)", "destination": "/" }]
}

Custom Domain Setup

  1. Go to Vercel Dashboard β†’ Your Project
  2. Settings β†’ Domains
  3. Add your domain (e.g., zerotrace.com)
  4. Update DNS records as instructed
  5. HTTPS enabled automatically!

🧩 Components

Component Architecture

src/
β”œβ”€β”€ App.jsx               # Main app container
β”œβ”€β”€ index.css             # Global styles & design tokens
└── components/
    β”œβ”€β”€ Hero.jsx          # Hero section with title & CTA
    β”œβ”€β”€ Features.jsx      # Feature grid (3 cards)
    β”œβ”€β”€ DownloadSection.jsx # Platform download buttons
    └── Footer.jsx        # Copyright & credits

πŸ“„ Detailed Component Breakdown

1. Hero Component (Hero.jsx)

Purpose: First impression - captures attention

Features:

  • Large title with gradient text
  • "Open Source" badge with pulse animation
  • Subtitle explaining the product
  • Primary CTA button ("Download for Windows")
  • Background gradient overlay

Key CSS:

.hero-title {
  font-size: 4rem;
  background: linear-gradient(to right, #00d9ff, #a78bfa);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

2. Features Component (Features.jsx)

Purpose: Showcase key benefits in scannable format

Structure:

β”Œβ”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”
β”‚          FEATURES SECTION           β”‚
β”œβ”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”¬β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”¬β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€
β”‚ Card 1   β”‚ Card 2   β”‚ Card 3       β”‚
β”‚ πŸ”’      β”‚ πŸ“œ      β”‚ 🌐          β”‚
β”‚ Secure  β”‚ Proof   β”‚ Cross-       β”‚
β”‚ Erase   β”‚         β”‚ Platform     β”‚
β””β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”΄β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”΄β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”˜

Each Card Includes:

  • Icon (emoji or SVG)
  • Title
  • Description
  • Hover effect (elevation + glow)

Key Features:

  • Grid layout (3 columns on desktop, stacks on mobile)
  • Card design with backdrop blur
  • Smooth hover animations

3. Download Section (DownloadSection.jsx)

Purpose: Clear CTAs for each platform

Platforms:

β”Œβ”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”¬β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”¬β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”
β”‚  πŸͺŸ Windows    β”‚  🐧 Linux      β”‚  πŸ“± Android    β”‚
β”‚  Download MSI   β”‚  Coming Soon    β”‚  Coming Soon    β”‚
β””β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”΄β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”΄β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”˜

Button States:

  • Active (Windows): Primary blue with hover effect
  • Disabled (Linux/Android): Grayed out with "Coming Soon"

Features:

  • Platform icons
  • File size/version info
  • Responsive stacking on mobile

4. Footer Component (Footer.jsx)

Purpose: Credits and legal info

Content:

  • Copyright notice
  • Year auto-update
  • Optional links (Privacy, Terms, GitHub)

🎨 Styling

Design System

Color Palette

:root {
  /* Primary Colors */
  --primary-bg: #0a0a0f; /* Deep space black */
  --secondary-bg: #1a1a2e; /* Dark navy */
  --accent-blue: #00d9ff; /* Neon cyan */
  --accent-purple: #a78bfa; /* Soft purple */

  /* Text Colors */
  --text-primary: #ffffff; /* White */
  --text-secondary: #94a3b8; /* Muted gray */

  /* UI Elements */
  --card-bg: rgba(26, 26, 46, 0.6); /* Semi-transparent */
  --border-color: rgba(0, 217, 255, 0.2);

  /* Gradients */
  --gradient-primary: linear-gradient(135deg, #00d9ff 0%, #a78bfa 100%);
  --gradient-glow: radial-gradient(
    circle,
    rgba(0, 217, 255, 0.1) 0%,
    transparent 70%
  );
}

Typography

/* Headings */
h1 {
  font-size: 3.5rem;
  font-weight: 800;
}
h2 {
  font-size: 2.5rem;
  font-weight: 700;
}
h3 {
  font-size: 1.75rem;
  font-weight: 600;
}

/* Body */
body {
  font-size: 1rem;
  line-height: 1.6;
}

Spacing Scale

--space-xs: 0.5rem; /* 8px */
--space-sm: 1rem; /* 16px */
--space-md: 1.5rem; /* 24px */
--space-lg: 2rem; /* 32px */
--space-xl: 3rem; /* 48px */
--space-2xl: 4rem; /* 64px */

Animations

Hover Effects

/* Button Hover */
.cta-button {
  transition: all 0.3s ease;
}
.cta-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 40px rgba(0, 217, 255, 0.4);
}

/* Card Hover */
.feature-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 60px rgba(0, 217, 255, 0.15);
}

Pulse Animation

@keyframes pulse {
  0%,
  100% {
    opacity: 1;
  }
  50% {
    opacity: 0.5;
  }
}

.badge {
  animation: pulse 2s ease-in-out infinite;
}

πŸ” SEO Optimization

Meta Tags

Already implemented in index.html:

<head>
  <meta charset="UTF-8" />
  <meta name="viewport" content="width=device-width, initial-scale=1.0" />
  <meta
    name="description"
    content="ZeroTrace - Professional data wiping tool with military-grade security"
  />
  <meta
    name="keywords"
    content="data wipe, secure erase, DoD, NIST, data destruction"
  />
  <meta property="og:title" content="ZeroTrace - Secure Data Wiping" />
  <meta
    property="og:description"
    content="Professional data destruction software"
  />
  <meta property="og:type" content="website" />
  <title>ZeroTrace - Secure Data Wiping Tool</title>
</head>

Performance SEO

  • βœ… Fast initial load (<1s on Vercel)
  • βœ… Semantic HTML5 elements
  • βœ… Descriptive alt text for images
  • βœ… Clean URL structure
  • βœ… Mobile-responsive (Google ranking factor)

⚑ Performance

Lighthouse Scores (Target)

Performance:  95+  🟒
Accessibility: 95+  🟒
Best Practices: 100 🟒
SEO:          100 🟒

Optimization Techniques

βœ… Code Splitting

  • Vite automatically splits vendor and app code
  • Lazy loading for components

βœ… Asset Optimization

  • Minified CSS/JS
  • Tree-shaking (unused code removed)
  • Gzip compression on Vercel

βœ… Caching

  • Vercel CDN caches static assets
  • Browser caching headers

βœ… Font Optimization

  • Google Fonts with font-display: swap
  • Preconnect to fonts.googleapis.com

πŸ“Š Analytics (Optional)

Add Vercel Analytics

npm install @vercel/analytics
// src/main.jsx
import { inject } from "@vercel/analytics";

inject();

Get Insights:

  • Page views
  • User locations
  • Performance metrics
  • Real user monitoring

πŸ”§ Customization

Change Colors

Edit src/index.css:

:root {
  --accent-blue: #your-color-here;
  --accent-purple: #your-color-here;
}

Add Sections

Create new component:

// src/components/Testimonials.jsx
export default function Testimonials() {
  return <section className="testimonials">{/* Your content */}</section>;
}

Import in App.jsx:

import Testimonials from "./components/Testimonials";

// In JSX:
<Testimonials />;

πŸ“Έ Screenshots

Desktop View

Desktop Screenshot

Mobile View

Mobile Screenshot


πŸ› Troubleshooting

Dev Server Not Starting

# Clear cache
rm -rf node_modules
npm install
npm run dev

Vercel Deployment Failed

Check:

  1. Build command: npm run build
  2. Output directory: dist
  3. Node version: 16.x or higher

πŸ“„ License

MIT License - See LICENSE file


🀝 Contributing

  1. Fork the repo
  2. Create feature branch (git checkout -b feature/amazing-feature)
  3. Commit changes (git commit -m 'Add amazing feature')
  4. Push to branch (git push origin feature/amazing-feature)
  5. Open Pull Request

πŸ“ž Support


Built with ❀️ using React, Vite, and Vercel

Star on GitHub

⬆ Back to Top

About

No description, website, or topics provided.

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

 
 
 

Contributors