File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change 1+ import LandingHeader from '@/components/landing/LandingHeader' ;
2+ import HeroSection from '@/components/landing/HeroSection' ;
3+ import FeatureList from '@/components/landing/FeatureList' ;
4+ import LandingPreview from '@/components/landing/LandingPreview' ;
5+
6+ const Page = ( ) => {
7+ return (
8+ < div className = "bg-background h-full space-y-60" >
9+ < LandingHeader />
10+ < HeroSection />
11+ < FeatureList />
12+ < LandingPreview />
13+ </ div >
14+ ) ;
15+ } ;
16+
17+ export default Page ;
Load diff This file was deleted.
Original file line number Diff line number Diff line change 1- import LandingHeader from '@/components/landing/LandingHeader' ;
2- import HeroSection from '@/components/landing/HeroSection' ;
3- import FeatureList from '@/components/landing/FeatureList' ;
4- import LandingPreview from '@/components/landing/LandingPreview' ;
5-
61export default function Home ( ) {
7- return (
8- < div className = "bg-background h-full space-y-60" >
9- < LandingHeader />
10- < HeroSection />
11- < FeatureList />
12- < LandingPreview />
13- </ div >
14- ) ;
2+ return < div > home</ div > ;
153}
You can’t perform that action at this time.
0 commit comments