You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
20 lines
460 B
20 lines
460 B
import Navigation from '@/components/Navigation';
|
|
import Hero from '@/components/Hero';
|
|
import About from '@/components/About';
|
|
import Values from '@/components/Values';
|
|
import Contact from '@/components/Contact';
|
|
import Footer from '@/components/Footer';
|
|
|
|
export default function Home() {
|
|
return (
|
|
<main className="min-h-screen">
|
|
<Navigation />
|
|
<Hero />
|
|
<About />
|
|
<Values />
|
|
<Contact />
|
|
<Footer />
|
|
</main>
|
|
);
|
|
}
|