Update src/app/page.tsx

This commit is contained in:
2026-04-06 20:41:56 +00:00
parent 671e87e3df
commit bd434d62f2

View File

@@ -5,8 +5,8 @@ import NavbarStyleCentered from "@/components/navbar/NavbarStyleCentered/NavbarS
import HeroOverlayTestimonial from "@/components/sections/hero/HeroOverlayTestimonial";
import InlineImageSplitTextAbout from "@/components/sections/about/InlineImageSplitTextAbout";
import FeatureCardTwelve from "@/components/sections/feature/FeatureCardTwelve";
import ContactCTA from "@/components/sections/contact/ContactCTA";
import FooterLogoReveal from "@/components/sections/footer/FooterLogoReveal";
import ContactText from "@/components/sections/contact/ContactText";
import FooterBaseCard from "@/components/sections/footer/FooterBaseCard";
export default function LandingPage() {
return (
@@ -77,10 +77,8 @@ export default function LandingPage() {
</div>
<div id="contact" data-section="contact">
<ContactCTA
tag="Contactează-ne"
title="Ești gata de lansare?"
description="Avem o medie de 7 zile pentru livrarea site-ului tău. Scrie-ne acum!"
<ContactText
text="Ești gata de lansare? Avem o medie de 7 zile pentru livrarea site-ului tău. Scrie-ne acum!"
buttons={[{ text: "Trimite Mesaj", href: "mailto:hello@micro.netweb" }]}
background={{ variant: "sparkles-gradient" }}
useInvertedBackground={true}
@@ -88,10 +86,12 @@ export default function LandingPage() {
</div>
<div id="footer" data-section="footer">
<FooterLogoReveal
<FooterBaseCard
logoText="micro.netweb"
leftLink={{ text: "Privacy Policy", href: "#" }}
rightLink={{ text: "Terms & Conditions", href: "#" }}
columns={[
{ title: "Companie", items: [{ label: "Despre noi", href: "#about" }, { label: "Servicii", href: "#features" }] },
{ title: "Legal", items: [{ label: "Privacy Policy", href: "#" }, { label: "Terms & Conditions", href: "#" }] }
]}
/>
</div>
</ThemeProvider>