A modern, professional, front-end only website for tax preparation services built with Next.js, React, and Tailwind CSS.
npm install
npm run dev
All text content can be edited in the constants/content.ts file. This includes:
Edit the siteConfig object in constants/content.ts:
contact: {
phone: '555-123-4567', // Your phone number
email: 'info@testaxservices.com', // Your email
text: '555-123-4567', // Your text number
}
Build the static site:
npm run build
The static files will be generated in the out directory.
Push your code to a GitHub repository.
*.vercel.app URLThe project is already configured for static export:
next.config.js includes output: 'export'unoptimized: true for static export├── app/
│ ├── globals.css # Global styles and Tailwind imports
│ ├── layout.tsx # Root layout with metadata
│ └── page.tsx # Main page component
├── components/
│ ├── Navbar.tsx # Sticky navigation bar
│ ├── Hero.tsx # Hero section
│ ├── Services.tsx # Services cards
│ ├── HowItWorks.tsx # Process steps
│ ├── Pricing.tsx # Pricing section
│ ├── FAQ.tsx # FAQ accordion
│ ├── Contact.tsx # Contact form and buttons
│ └── Footer.tsx # Footer with links and disclaimer
├── constants/
│ └── content.ts # All editable text content
├── public/ # Static assets (if any)
└── package.json
This project is private and proprietary.