Update src/app/terms/page.tsx

This commit is contained in:
2026-02-20 13:58:06 +00:00
parent d1cf0ed746
commit 220ee38eab

View File

@@ -2,7 +2,7 @@
import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
import NavbarStyleApple from '@/components/navbar/NavbarStyleApple/NavbarStyleApple';
import LegalSection from '@/components/ecommerce/LegalSection';
import LegalSection from '@/components/legal/LegalSection';
export default function TermsPage() {
return (
@@ -22,10 +22,10 @@ export default function TermsPage() {
<NavbarStyleApple
brandName="Pepper Peak"
navItems={[
{ name: "About", id: "about" },
{ name: "Flavors", id: "flavors" },
{ name: "Testimonials", id: "testimonials" },
{ name: "Contact", id: "contact" },
{ name: "About", id: "/#about" },
{ name: "Flavors", id: "/#flavors" },
{ name: "Testimonials", id: "/#testimonials" },
{ name: "Contact", id: "/#contact" },
{ name: "Privacy Policy", id: "/privacy" },
{ name: "Terms of Service", id: "/terms" }
]}