Add src/app/terms/page.tsx

This commit is contained in:
2026-04-14 23:29:12 +00:00
parent 9bee782185
commit efeefa4733

15
src/app/terms/page.tsx Normal file
View File

@@ -0,0 +1,15 @@
"use client";
import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
import NavbarStyleApple from '@/components/navbar/NavbarStyleApple/NavbarStyleApple';
import LegalSection from '@/components/legal/LegalSection';
export default function TermsPage() {
return (
<ThemeProvider borderRadius="soft">
<NavbarStyleApple navItems={[{name: "Home", id: "/"}]} brandName="Swift Haul" />
<div className="pt-32">
<LegalSection layout="page" title="Terms of Service" sections={[{heading: "Usage", content: {type: "paragraph", text: "By using our services, you agree to these terms."}}]} />
</div>
</ThemeProvider>
);
}