Merge version_1 into main #5

Merged
bender merged 1 commits from version_1 into main 2026-03-30 13:11:09 +00:00

View File

@@ -9,7 +9,6 @@ import LegalSection from '@/components/legal/LegalSection';
import NavbarLayoutFloatingInline from '@/components/navbar/NavbarLayoutFloatingInline';
import PricingCardNine from '@/components/sections/pricing/PricingCardNine';
import TeamCardSix from '@/components/sections/team/TeamCardSix';
import Link from "next/link";
export default function LandingPage() {
return (
@@ -59,7 +58,7 @@ export default function LandingPage() {
useInvertedBackground={false}
title="Meet Our Team"
description="The experts driving our excellence."
members={[{ name: "Karim", role: "Founder", imageSrc: "", imageAlt: "Karim" }, { name: "Nadine", role: "Manager", imageSrc: "", imageAlt: "Nadine" }]}
members={[{ id: "1", name: "Karim", role: "Founder", imageSrc: "", imageAlt: "Karim" }, { id: "2", name: "Nadine", role: "Manager", imageSrc: "", imageAlt: "Nadine" }]}
/>
</div>
@@ -83,7 +82,7 @@ export default function LandingPage() {
useInvertedBackground={false}
title="Service Packages"
description="Choose the maintenance plan that fits you."
plans={[{ id: "1", title: "Basic", price: "$99", features: ["Service 1"], button: { text: "Buy" } }, { id: "2", title: "Pro", price: "$199", features: ["Service 1", "Service 2"], button: { text: "Buy" } }]}
plans={[{ id: "1", title: "Basic", period: "Monthly", price: "$99", features: ["Service 1"], button: { text: "Buy" } }, { id: "2", title: "Pro", period: "Monthly", price: "$199", features: ["Service 1", "Service 2"], button: { text: "Buy" } }]}
/>
</div>
@@ -91,6 +90,7 @@ export default function LandingPage() {
<LegalSection
layout="section"
title="Legal"
sections={[]}
/>
</div>