22 lines
679 B
TypeScript
22 lines
679 B
TypeScript
import Header from "@/components/header"
|
|
import HeroSection from "@/components/hero-section"
|
|
import ServicesSection from "@/components/services-section"
|
|
import TechStackSection from "@/components/tech_stack-section"
|
|
import ContactSection from "@/components/contact-section"
|
|
import Footer from "@/components/footer"
|
|
|
|
export default function HomePage() {
|
|
return (
|
|
<div className="min-h-screen bg-gradient-to-br from-gray-50 via-white to-gray-100 text-gray-900 overflow-x-hidden relative">
|
|
<Header />
|
|
<main>
|
|
<HeroSection />
|
|
<ServicesSection />
|
|
<TechStackSection />
|
|
<ContactSection />
|
|
</main>
|
|
<Footer />
|
|
</div>
|
|
)
|
|
}
|