Merge version_3 into main #5

Merged
bender merged 2 commits from version_3 into main 2026-03-10 22:15:33 +00:00
2 changed files with 170 additions and 8 deletions

View File

@@ -34,7 +34,8 @@ export default function LandingPage() {
{ name: "About", id: "about" },
{ name: "Dishes", id: "dishes" },
{ name: "Bar & Brunch", id: "bar-brunch" },
{ name: "Reservations", id: "contact" }
{ name: "Reservations", id: "contact" },
{ name: "Terms of Service", id: "/terms-of-service" }
]}
button={{ text: "Reserve a Table", href: "contact" }}
animateOnLoad={true}
@@ -255,7 +256,7 @@ export default function LandingPage() {
columns={[
{
title: "Navigate", items: [
{ label: "Home", href: "#" },
{ label: "Home", href: "/" },
{ label: "About", href: "#about" },
{ label: "Dishes", href: "#dishes" },
{ label: "Bar & Brunch", href: "#bar-brunch" }
@@ -270,11 +271,11 @@ export default function LandingPage() {
]
},
{
title: "Connect", items: [
{ label: "Instagram", href: "https://instagram.com" },
{ label: "Facebook", href: "https://facebook.com" },
{ label: "Email", href: "mailto:hello@anju.com" },
{ label: "Newsletter", href: "#" }
title: "Legal", items: [
{ label: "Terms of Service", href: "/terms-of-service" },
{ label: "Privacy Policy", href: "#" },
{ label: "Cookie Policy", href: "#" },
{ label: "Contact", href: "#contact" }
]
}
]}
@@ -284,4 +285,4 @@ export default function LandingPage() {
</div>
</ThemeProvider>
);
}
}

View File

@@ -0,0 +1,161 @@
"use client";
import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
import NavbarLayoutFloatingInline from '@/components/navbar/NavbarLayoutFloatingInline';
import LegalSection from '@/components/legal/LegalSection';
import FooterSimple from '@/components/sections/footer/FooterSimple';
export default function TermsOfServicePage() {
return (
<ThemeProvider
defaultButtonVariant="hover-bubble"
defaultTextAnimation="reveal-blur"
borderRadius="rounded"
contentWidth="mediumLarge"
sizing="mediumSizeLargeTitles"
background="blurBottom"
cardStyle="gradient-mesh"
primaryButtonStyle="double-inset"
secondaryButtonStyle="layered"
headingFontWeight="medium"
>
<div id="nav" data-section="nav">
<NavbarLayoutFloatingInline
brandName="Anju"
navItems={[
{ name: "About", id: "about" },
{ name: "Dishes", id: "dishes" },
{ name: "Bar & Brunch", id: "bar-brunch" },
{ name: "Reservations", id: "contact" },
{ name: "Terms of Service", id: "/terms-of-service" }
]}
button={{ text: "Reserve a Table", href: "contact" }}
animateOnLoad={true}
/>
</div>
<div id="legal" data-section="legal">
<LegalSection
layout="page"
title="Terms of Service"
subtitle="Last updated: January 15, 2025"
sections={[
{
heading: "1. Agreement to Terms", content: [
{
type: "paragraph", text: "By accessing and using the Anju website and services, you accept and agree to be bound by the terms and provision of this agreement. If you do not agree to abide by the above, please do not use this service."
}
]
},
{
heading: "2. Use License", content: [
{
type: "paragraph", text: "Permission is granted to temporarily download one copy of the materials (information or software) on Anju's website for personal, non-commercial transitory viewing only. This is the grant of a license, not a transfer of title, and under this license you may not:"
},
{
type: "list", items: [
"Modifying or copying the materials", "Using the materials for any commercial purpose or for any public display", "Attempting to decompile or reverse engineer any software contained on the website", "Removing any copyright or other proprietary notations from the materials", "Transferring the materials to another person or 'mirroring' the materials on any other server"
]
}
]
},
{
heading: "3. Disclaimer", content: [
{
type: "paragraph", text: "The materials on Anju's website are provided 'as is'. Anju makes no warranties, expressed or implied, and hereby disclaims and negates all other warranties including, without limitation, implied warranties or conditions of merchantability, fitness for a particular purpose, or non-infringement of intellectual property or other violation of rights."
}
]
},
{
heading: "4. Limitations", content: [
{
type: "paragraph", text: "In no event shall Anju or its suppliers be liable for any damages (including, without limitation, damages for loss of data or profit, or due to business interruption) arising out of the use or inability to use the materials on Anju's website, even if Anju or an authorized representative has been notified orally or in writing of the possibility of such damage."
}
]
},
{
heading: "5. Accuracy of Materials", content: [
{
type: "paragraph", text: "The materials appearing on Anju's website could include technical, typographical, or photographic errors. Anju does not warrant that any of the materials on the website are accurate, complete, or current. Anju may make changes to the materials contained on the website at any time without notice."
}
]
},
{
heading: "6. Links", content: [
{
type: "paragraph", text: "Anju has not reviewed all of the sites linked to its website and is not responsible for the contents of any such linked site. The inclusion of any link does not imply endorsement by Anju of the site. Use of any such linked website is at the user's own risk."
}
]
},
{
heading: "7. Modifications", content: [
{
type: "paragraph", text: "Anju may revise these terms of service for the website at any time without notice. By using this website you are agreeing to be bound by the then current version of these terms of service."
}
]
},
{
heading: "8. Governing Law", content: [
{
type: "paragraph", text: "These terms and conditions are governed by and construed in accordance with the laws of [Your State/Country], and you irrevocably submit to the exclusive jurisdiction of the courts located in that location."
}
]
},
{
heading: "9. Reservation Policy", content: [
{
type: "paragraph", text: "All reservations made through our website or directly with Anju are subject to the following terms:"
},
{
type: "list", items: [
"Reservations must be confirmed at least 24 hours in advance", "Cancellations must be made at least 24 hours prior to reservation time", "Failure to cancel or arrive for a reservation may result in a cancellation fee", "Anju reserves the right to hold your table for 15 minutes past reservation time", "Tables are reserved for a maximum dining duration of 2 hours during peak service"
]
}
]
},
{
heading: "10. Contact Information", content: [
{
type: "paragraph", text: "If you have any questions about these Terms of Service, please contact us at hello@anju.com or call +1-202-555-0123."
}
]
}
]}
/>
</div>
<div id="footer" data-section="footer">
<FooterSimple
columns={[
{
title: "Navigate", items: [
{ label: "Home", href: "/" },
{ label: "About", href: "/#about" },
{ label: "Dishes", href: "/#dishes" },
{ label: "Bar & Brunch", href: "/#bar-brunch" }
]
},
{
title: "Dining", items: [
{ label: "Reservations", href: "/#reservation-cta" },
{ label: "Hours & Location", href: "#" },
{ label: "Contact", href: "/#contact" },
{ label: "Private Events", href: "#" }
]
},
{
title: "Legal", items: [
{ label: "Terms of Service", href: "/terms-of-service" },
{ label: "Privacy Policy", href: "#" },
{ label: "Cookie Policy", href: "#" },
{ label: "Contact", href: "/#contact" }
]
}
]}
bottomLeftText="© 2025 Anju Korean Restaurant. All rights reserved."
bottomRightText="Crafted with culinary passion."
/>
</div>
</ThemeProvider>
);
}