18 lines
435 B
TypeScript
18 lines
435 B
TypeScript
import { Hero } from "@/components/hero"
|
|
import { Features } from "@/components/features"
|
|
import { HowItWorks } from "@/components/how-it-works"
|
|
import { Philosophy } from "@/components/philosophy"
|
|
import { Footer } from "@/components/footer"
|
|
|
|
export default function Page() {
|
|
return (
|
|
<main className="min-h-screen">
|
|
<Hero />
|
|
<Features />
|
|
<HowItWorks />
|
|
<Philosophy />
|
|
<Footer />
|
|
</main>
|
|
)
|
|
}
|