components/app/.cursor/rules/home-page-components.md
When working with home/landing page components in components-new/app/(home):
home/
├── sections/ # Major page sections
│ ├── hero/ # Hero section with flames
│ ├── features/ # Feature showcase
│ ├── testimonials/# Customer testimonials
│ ├── pricing/ # Pricing cards
│ └── faq/ # FAQ section
├── navbar/ # Landing page navbar
└── footer/ # Landing page footer
These components will be migrated from marketing/ when beginning home page migration after Dashboard v2.
// app/page.tsx (future)
import { Hero } from '@/components/home/sections/hero';
import { Features } from '@/components/home/sections/features';
import { Testimonials } from '@/components/home/sections/testimonials';
import { Pricing } from '@/components/home/sections/pricing';
import { FAQ } from '@/components/home/sections/faq';
export default function HomePage() {
return (
<>
<Hero />
<Features />
<Testimonials />
<Pricing />
<FAQ />
</>
);
}