Primer vistaso

This commit is contained in:
unknown
2026-05-26 23:00:14 -04:00
commit bd93fb3bf2
30 changed files with 9330 additions and 0 deletions

21
src/app/page.tsx Normal file
View File

@@ -0,0 +1,21 @@
import Navbar from '@/components/Navbar/Navbar';
import Hero from '@/components/Hero/Hero';
import Features from '@/components/Features/Features';
import Pricing from '@/components/Pricing/Pricing';
import ContactForm from '@/components/ContactForm/ContactForm';
import Footer from '@/components/Footer/Footer';
export default function Home() {
return (
<>
<Navbar />
<main id="main-content">
<Hero />
<Features />
<Pricing />
<ContactForm />
</main>
<Footer />
</>
);
}