Update src/app/page.tsx

This commit is contained in:
2026-05-11 14:51:15 +00:00
parent 51ad61a521
commit ef0b7fb539

View File

@@ -7,10 +7,12 @@ import ProductCardOne from "@/components/sections/product/ProductCardOne";
import TestimonialCardFifteen from "@/components/sections/testimonial/TestimonialCardFifteen";
import ContactSplit from "@/components/sections/contact/ContactSplit";
import FooterLogoReveal from "@/components/sections/footer/FooterLogoReveal";
import { Info, Mail, Star } from "lucide-react";
import { Info } from "lucide-react";
export default function Page() {
const navItems = [{ name: "Home", id: "/" }];
const navItems = [
{ name: "Home", id: "/" }
];
return (
<ThemeProvider defaultButtonVariant="text-stagger" defaultTextAnimation="entrance-slide" borderRadius="rounded" contentWidth="medium" sizing="medium" background="circleGradient" cardStyle="glass-elevated" primaryButtonStyle="gradient" secondaryButtonStyle="glass" headingFontWeight="normal">
<div id="nav" data-section="nav">
@@ -84,4 +86,4 @@ export default function Page() {
</div>
</ThemeProvider>
);
}
}