25 lines
649 B
TypeScript
25 lines
649 B
TypeScript
|
|
import Navbar from "@/components/Navbar";
|
|
import Hero from "@/components/Hero";
|
|
import NewsSection from "@/components/NewsSection";
|
|
import TeamSection from "@/components/TeamSection";
|
|
import GallerySection from "@/components/GallerySection";
|
|
import AboutSection from "@/components/AboutSection";
|
|
import ContactSection from "@/components/ContactSection";
|
|
import Footer from "@/components/Footer";
|
|
|
|
const Index = () => {
|
|
return (
|
|
<div className="min-h-screen bg-white">
|
|
<Hero />
|
|
<NewsSection />
|
|
<TeamSection />
|
|
<GallerySection />
|
|
<AboutSection />
|
|
<ContactSection />
|
|
</div>
|
|
);
|
|
};
|
|
|
|
export default Index;
|