Update src/app/locations/page.tsx

This commit is contained in:
2026-06-10 06:27:02 +00:00
parent 90ba25656c
commit be8937496c

View File

@@ -26,25 +26,15 @@ export default function LandingPage() {
<NavbarStyleCentered
navItems={[
{
name: "Home",
id: "/",
},
name: "Home", id: "/"},
{
name: "Menu",
id: "/menu",
},
name: "Menu", id: "/menu"},
{
name: "About",
id: "/about",
},
name: "About", id: "/about"},
{
name: "Locations",
id: "/locations",
},
name: "Locations", id: "/locations"},
{
name: "Contact",
id: "/contact",
},
name: "Contact", id: "/contact"},
]}
logoSrc="http://img.b2bpic.net/free-photo/top-view-coffee-paper-bags-with-labels_23-2148441226.jpg"
logoAlt="Cozy Cabin Coffee logo"
@@ -59,27 +49,13 @@ export default function LandingPage() {
useInvertedBackground={true}
features={[
{
id: "lawrenceburg",
title: "Lawrenceburg, TN",
descriptions: [
"616 N Locust Ave, Lawrenceburg, TN 38464",
"Phone: (931) 201-8018",
"Hours: MonFri: 6 AM 4 PM, Sat: 7 AM 4 PM, Sun: Closed",
],
imageSrc: "http://img.b2bpic.net/free-photo/young-man-sitting-bench-drinking-chocolate-milk-taking-selfie-mobile-phone_23-2148176702.jpg",
imageAlt: "Cozy Cabin Coffee Lawrenceburg",
},
id: "lawrenceburg", title: "Lawrenceburg, TN", descriptions: [
"616 N Locust Ave, Lawrenceburg, TN 38464", "Phone: (931) 201-8018", "Hours: MonFri: 6 AM 4 PM, Sat: 7 AM 4 PM, Sun: Closed"],
imageSrc: "http://img.b2bpic.net/free-photo/young-man-sitting-bench-drinking-chocolate-milk-taking-selfie-mobile-phone_23-2148176702.jpg", imageAlt: "Cozy Cabin Coffee Lawrenceburg"},
{
id: "pulaski",
title: "Pulaski, TN",
descriptions: [
"Opened in 2017 (Address varies, placeholder)",
"Phone: (XXX) XXX-XXXX (placeholder)",
"Hours: Check in-store for current hours.",
],
imageSrc: "http://img.b2bpic.net/free-photo/beautiful-girl-sitting-cafe_1157-16407.jpg",
imageAlt: "Cozy Cabin Coffee Pulaski",
},
id: "pulaski", title: "Pulaski, TN", descriptions: [
"Opened in 2017 (Address varies, placeholder)", "Phone: (XXX) XXX-XXXX (placeholder)", "Hours: Check in-store for current hours."],
imageSrc: "http://img.b2bpic.net/free-photo/beautiful-girl-sitting-cafe_1157-16407.jpg", imageAlt: "Cozy Cabin Coffee Pulaski"},
]}
title="Our Cozy Locations"
description="Find your nearest Cozy Cabin Coffee and enjoy your favorite beverages, served with a friendly smile. We look forward to seeing you!"
@@ -90,20 +66,16 @@ export default function LandingPage() {
<ContactCTA
useInvertedBackground={false}
background={{
variant: "glowing-orb",
variant: "sparkles-gradient"
}}
tag="Ready for a Brew?"
title="Visit Us Today!"
description="Swing by one of our convenient locations for your favorite coffee, smoothie, or quick bite. We're open and ready to serve you!"
buttons={[
{
text: "Get Directions",
href: "https://www.google.com/maps/search/Cozy+Cabin+Coffee",
},
text: "Get Directions", href: "https://www.google.com/maps/search/Cozy+Cabin+Coffee"},
{
text: "Call Us",
href: "tel:+19312018018",
},
text: "Call Us", href: "tel:+19312018018"},
]}
/>
</div>
@@ -116,61 +88,37 @@ export default function LandingPage() {
{
items: [
{
label: "Home",
href: "/",
},
label: "Home", href: "/"},
{
label: "Menu",
href: "/menu",
},
label: "Menu", href: "/menu"},
{
label: "About Us",
href: "/about",
},
label: "About Us", href: "/about"},
{
label: "Locations",
href: "/locations",
},
label: "Locations", href: "/locations"},
{
label: "Contact",
href: "/contact",
},
label: "Contact", href: "/contact"},
],
},
{
items: [
{
label: "Hot Coffee",
href: "/menu#hot-coffee",
},
label: "Hot Coffee", href: "/menu#hot-coffee"},
{
label: "Iced Drinks",
href: "/menu#iced-drinks",
},
label: "Iced Drinks", href: "/menu#iced-drinks"},
{
label: "Smoothies",
href: "/menu#smoothies",
},
label: "Smoothies", href: "/menu#smoothies"},
{
label: "Breakfast",
href: "/menu#food-items",
},
label: "Breakfast", href: "/menu#food-items"},
],
},
{
items: [
{
label: "Lawrenceburg, TN",
href: "https://www.google.com/maps/search/616+N+Locust+Ave,+Lawrenceburg,+TN+38464",
},
label: "Lawrenceburg, TN", href: "https://www.google.com/maps/search/616+N+Locust+Ave,+Lawrenceburg,+TN+38464"},
{
label: "Pulaski, TN",
href: "https://www.google.com/maps/search/Cozy+Cabin+Coffee+Pulaski",
},
label: "Pulaski, TN", href: "https://www.google.com/maps/search/Cozy+Cabin+Coffee+Pulaski"},
{
label: "(931) 201-8018",
href: "tel:+19312018018",
},
label: "(931) 201-8018", href: "tel:+19312018018"},
],
},
]}