28 lines
967 B
TypeScript
28 lines
967 B
TypeScript
import { Navbar } from "@/components/navbar"
|
|
import { Footer } from "@/components/footer"
|
|
import { HeroSection } from "@/components/sections/hero-section"
|
|
import { ProductsSection } from "@/components/sections/products-section"
|
|
import { AdvantagesSection } from "@/components/sections/advantages-section"
|
|
import { SolutionsSection } from "@/components/sections/solutions-section"
|
|
import { ProcessSection } from "@/components/sections/process-section"
|
|
import { CasesSection } from "@/components/sections/cases-section"
|
|
import { ContactSection } from "@/components/sections/contact-section"
|
|
|
|
export default function Home() {
|
|
return (
|
|
<div className="min-h-screen bg-background text-foreground">
|
|
<Navbar />
|
|
<main>
|
|
<HeroSection />
|
|
<ProductsSection />
|
|
<AdvantagesSection />
|
|
<SolutionsSection />
|
|
<ProcessSection />
|
|
<CasesSection />
|
|
<ContactSection />
|
|
</main>
|
|
<Footer />
|
|
</div>
|
|
)
|
|
}
|