Merge version_1 into main #2
@@ -7,7 +7,7 @@ import FooterSimple from '@/components/sections/footer/FooterSimple';
|
||||
import MediaAbout from '@/components/sections/about/MediaAbout';
|
||||
import NavbarLayoutFloatingInline from '@/components/navbar/NavbarLayoutFloatingInline';
|
||||
|
||||
export default function LandingPage() {
|
||||
export default function AboutPage() {
|
||||
return (
|
||||
<ThemeProvider
|
||||
defaultButtonVariant="expand-hover"
|
||||
@@ -25,24 +25,13 @@ export default function LandingPage() {
|
||||
<div id="nav" data-section="nav">
|
||||
<NavbarLayoutFloatingInline
|
||||
navItems={[
|
||||
{
|
||||
name: "Home",
|
||||
id: "/",
|
||||
},
|
||||
{
|
||||
name: "Shop",
|
||||
id: "/shop",
|
||||
},
|
||||
{
|
||||
name: "About",
|
||||
id: "/about",
|
||||
},
|
||||
{
|
||||
name: "Contact",
|
||||
id: "/contact",
|
||||
},
|
||||
{ name: "Home", id: "/" },
|
||||
{ name: "Shop", id: "/shop" },
|
||||
{ name: "About", id: "/about" },
|
||||
{ name: "Contact", id: "/contact" },
|
||||
]}
|
||||
brandName="Chrystal's Wine & Spirits"
|
||||
button={{ text: "Contact Us", href: "/contact" }}
|
||||
/>
|
||||
</div>
|
||||
|
||||
@@ -51,7 +40,7 @@ export default function LandingPage() {
|
||||
useInvertedBackground={false}
|
||||
title="Our Story"
|
||||
description="Started in 1994, our goal was simple: bring world-class spirits to the heart of our community."
|
||||
imageSrc="http://img.b2bpic.net/free-photo/man-black-suit-drinks-alcohol-attractive-guy-drinks-whiskey-from-glass_1157-43492.jpg?_wi=3"
|
||||
imageSrc="http://img.b2bpic.net/free-photo/man-black-suit-drinks-alcohol-attractive-guy-drinks-whiskey-from-glass_1157-43492.jpg"
|
||||
/>
|
||||
</div>
|
||||
|
||||
@@ -63,16 +52,8 @@ export default function LandingPage() {
|
||||
title="Our Values"
|
||||
description="What drives us forward every day."
|
||||
features={[
|
||||
{
|
||||
title: "Passion",
|
||||
description: "Deep knowledge of our inventory.",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/crystal-wineglasses-stand-illuminated-wardrobe_8353-658.jpg?_wi=3",
|
||||
},
|
||||
{
|
||||
title: "Community",
|
||||
description: "We are proud of our Bloomfield roots.",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/close-up-beer-bottle-wooden-desk_23-2147919792.jpg?_wi=2",
|
||||
},
|
||||
{ title: "Passion", description: "Deep knowledge of our inventory.", imageSrc: "http://img.b2bpic.net/free-photo/crystal-wineglasses-stand-illuminated-wardrobe_8353-658.jpg" },
|
||||
{ title: "Community", description: "We are proud of our Bloomfield roots.", imageSrc: "http://img.b2bpic.net/free-photo/close-up-beer-bottle-wooden-desk_23-2147919792.jpg" },
|
||||
]}
|
||||
/>
|
||||
</div>
|
||||
@@ -81,37 +62,17 @@ export default function LandingPage() {
|
||||
<FooterSimple
|
||||
columns={[
|
||||
{
|
||||
title: "Store",
|
||||
items: [
|
||||
{
|
||||
label: "Home",
|
||||
href: "/",
|
||||
},
|
||||
{
|
||||
label: "Shop",
|
||||
href: "/shop",
|
||||
},
|
||||
{
|
||||
label: "About",
|
||||
href: "/about",
|
||||
},
|
||||
{
|
||||
label: "Contact",
|
||||
href: "/contact",
|
||||
},
|
||||
title: "Store", items: [
|
||||
{ label: "Home", href: "/" },
|
||||
{ label: "Shop", href: "/shop" },
|
||||
{ label: "About", href: "/about" },
|
||||
{ label: "Contact", href: "/contact" },
|
||||
],
|
||||
},
|
||||
{
|
||||
title: "Info",
|
||||
items: [
|
||||
{
|
||||
label: "Hours: Mon-Sun",
|
||||
href: "#",
|
||||
},
|
||||
{
|
||||
label: "Must be 21+ to enter",
|
||||
href: "#",
|
||||
},
|
||||
title: "Info", items: [
|
||||
{ label: "Hours: Mon-Sun", href: "#" },
|
||||
{ label: "Must be 21+ to enter", href: "#" },
|
||||
],
|
||||
},
|
||||
]}
|
||||
|
||||
@@ -7,7 +7,7 @@ import FooterSimple from '@/components/sections/footer/FooterSimple';
|
||||
import NavbarLayoutFloatingInline from '@/components/navbar/NavbarLayoutFloatingInline';
|
||||
import TextAbout from '@/components/sections/about/TextAbout';
|
||||
|
||||
export default function LandingPage() {
|
||||
export default function ContactPage() {
|
||||
return (
|
||||
<ThemeProvider
|
||||
defaultButtonVariant="expand-hover"
|
||||
@@ -25,24 +25,13 @@ export default function LandingPage() {
|
||||
<div id="nav" data-section="nav">
|
||||
<NavbarLayoutFloatingInline
|
||||
navItems={[
|
||||
{
|
||||
name: "Home",
|
||||
id: "/",
|
||||
},
|
||||
{
|
||||
name: "Shop",
|
||||
id: "/shop",
|
||||
},
|
||||
{
|
||||
name: "About",
|
||||
id: "/about",
|
||||
},
|
||||
{
|
||||
name: "Contact",
|
||||
id: "/contact",
|
||||
},
|
||||
{ name: "Home", id: "/" },
|
||||
{ name: "Shop", id: "/shop" },
|
||||
{ name: "About", id: "/about" },
|
||||
{ name: "Contact", id: "/contact" },
|
||||
]}
|
||||
brandName="Chrystal's Wine & Spirits"
|
||||
button={{ text: "Contact Us", href: "/contact" }}
|
||||
/>
|
||||
</div>
|
||||
|
||||
@@ -62,16 +51,8 @@ export default function LandingPage() {
|
||||
title="Visit Us"
|
||||
description="Located in central Bloomfield, stop by for a chat."
|
||||
features={[
|
||||
{
|
||||
title: "Location",
|
||||
description: "123 Main St, Bloomfield, CT",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/man-black-suit-drinks-alcohol-attractive-guy-drinks-whiskey-from-glass_1157-43492.jpg?_wi=4",
|
||||
},
|
||||
{
|
||||
title: "Hours",
|
||||
description: "Daily 10am - 9pm",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/blurred-shelves-with-wine-bottles_1203-844.jpg?_wi=3",
|
||||
},
|
||||
{ title: "Location", description: "123 Main St, Bloomfield, CT", imageSrc: "http://img.b2bpic.net/free-photo/man-black-suit-drinks-alcohol-attractive-guy-drinks-whiskey-from-glass_1157-43492.jpg" },
|
||||
{ title: "Hours", description: "Daily 10am - 9pm", imageSrc: "http://img.b2bpic.net/free-photo/blurred-shelves-with-wine-bottles_1203-844.jpg" },
|
||||
]}
|
||||
/>
|
||||
</div>
|
||||
@@ -80,37 +61,17 @@ export default function LandingPage() {
|
||||
<FooterSimple
|
||||
columns={[
|
||||
{
|
||||
title: "Store",
|
||||
items: [
|
||||
{
|
||||
label: "Home",
|
||||
href: "/",
|
||||
},
|
||||
{
|
||||
label: "Shop",
|
||||
href: "/shop",
|
||||
},
|
||||
{
|
||||
label: "About",
|
||||
href: "/about",
|
||||
},
|
||||
{
|
||||
label: "Contact",
|
||||
href: "/contact",
|
||||
},
|
||||
title: "Store", items: [
|
||||
{ label: "Home", href: "/" },
|
||||
{ label: "Shop", href: "/shop" },
|
||||
{ label: "About", href: "/about" },
|
||||
{ label: "Contact", href: "/contact" },
|
||||
],
|
||||
},
|
||||
{
|
||||
title: "Info",
|
||||
items: [
|
||||
{
|
||||
label: "Hours: Mon-Sun",
|
||||
href: "#",
|
||||
},
|
||||
{
|
||||
label: "Must be 21+ to enter",
|
||||
href: "#",
|
||||
},
|
||||
title: "Info", items: [
|
||||
{ label: "Hours: Mon-Sun", href: "#" },
|
||||
{ label: "Must be 21+ to enter", href: "#" },
|
||||
],
|
||||
},
|
||||
]}
|
||||
|
||||
157
src/app/page.tsx
157
src/app/page.tsx
@@ -28,46 +28,27 @@ export default function LandingPage() {
|
||||
<div id="nav" data-section="nav">
|
||||
<NavbarLayoutFloatingInline
|
||||
navItems={[
|
||||
{
|
||||
name: "Home",
|
||||
id: "/",
|
||||
},
|
||||
{
|
||||
name: "Shop",
|
||||
id: "/shop",
|
||||
},
|
||||
{
|
||||
name: "About",
|
||||
id: "/about",
|
||||
},
|
||||
{
|
||||
name: "Contact",
|
||||
id: "/contact",
|
||||
},
|
||||
{ name: "Home", id: "/" },
|
||||
{ name: "Shop", id: "/shop" },
|
||||
{ name: "About", id: "/about" },
|
||||
{ name: "Contact", id: "/contact" },
|
||||
]}
|
||||
brandName="Chrystal's Wine & Spirits"
|
||||
button={{ text: "Contact Us", href: "/contact" }}
|
||||
/>
|
||||
</div>
|
||||
|
||||
<div id="hero" data-section="hero">
|
||||
<HeroLogoBillboard
|
||||
background={{
|
||||
variant: "rotated-rays-static",
|
||||
}}
|
||||
background={{ variant: "rotated-rays-static" }}
|
||||
logoText="Bloomfield's Premier Wine & Spirits Destination"
|
||||
description="Curated bottles. Expert picks. Right here in Bloomfield, CT."
|
||||
buttons={[
|
||||
{
|
||||
text: "Shop Now",
|
||||
href: "/shop",
|
||||
},
|
||||
{
|
||||
text: "Visit Us Today",
|
||||
href: "/contact",
|
||||
},
|
||||
{ text: "Shop Now", href: "/shop" },
|
||||
{ text: "Visit Us Today", href: "/contact" },
|
||||
]}
|
||||
buttonAnimation="slide-up"
|
||||
imageSrc="http://img.b2bpic.net/free-photo/man-black-suit-drinks-alcohol-attractive-guy-drinks-whiskey-from-glass_1157-43492.jpg?_wi=1"
|
||||
imageSrc="http://img.b2bpic.net/free-photo/man-black-suit-drinks-alcohol-attractive-guy-drinks-whiskey-from-glass_1157-43492.jpg"
|
||||
imageAlt="Chrystal's Wine & Spirits store interior"
|
||||
mediaAnimation="opacity"
|
||||
/>
|
||||
@@ -88,42 +69,12 @@ export default function LandingPage() {
|
||||
gridVariant="three-columns-all-equal-width"
|
||||
useInvertedBackground={true}
|
||||
products={[
|
||||
{
|
||||
id: "liquor",
|
||||
name: "Liquor",
|
||||
price: "View Selection",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/blurred-shelves-with-wine-bottles_1203-844.jpg?_wi=1",
|
||||
},
|
||||
{
|
||||
id: "beer",
|
||||
name: "Beer",
|
||||
price: "View Selection",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/close-up-beer-bottle-wooden-desk_23-2147919792.jpg?_wi=1",
|
||||
},
|
||||
{
|
||||
id: "wine",
|
||||
name: "Wine",
|
||||
price: "View Selection",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/crystal-wineglasses-stand-illuminated-wardrobe_8353-658.jpg?_wi=1",
|
||||
},
|
||||
{
|
||||
id: "whiskey",
|
||||
name: "Whisky",
|
||||
price: "View Selection",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/front-view-blurry-depressed-man-with-drink_23-2149699046.jpg",
|
||||
},
|
||||
{
|
||||
id: "craft-beer",
|
||||
name: "Craft Beer",
|
||||
price: "View Selection",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/stylish-full-bearded-indian-man-fleece-shirt-apron-holds-glass-beer-standing-counter-brewery_613910-5531.jpg",
|
||||
},
|
||||
{
|
||||
id: "fine-wines",
|
||||
name: "Fine Wines",
|
||||
price: "View Selection",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/people-hands-getting-bottle-red-wine_53876-23320.jpg",
|
||||
},
|
||||
{ id: "liquor", name: "Liquor", price: "View Selection", imageSrc: "http://img.b2bpic.net/free-photo/blurred-shelves-with-wine-bottles_1203-844.jpg" },
|
||||
{ id: "beer", name: "Beer", price: "View Selection", imageSrc: "http://img.b2bpic.net/free-photo/close-up-beer-bottle-wooden-desk_23-2147919792.jpg" },
|
||||
{ id: "wine", name: "Wine", price: "View Selection", imageSrc: "http://img.b2bpic.net/free-photo/crystal-wineglasses-stand-illuminated-wardrobe_8353-658.jpg" },
|
||||
{ id: "whiskey", name: "Whisky", price: "View Selection", imageSrc: "http://img.b2bpic.net/free-photo/front-view-blurry-depressed-man-with-drink_23-2149699046.jpg" },
|
||||
{ id: "craft-beer", name: "Craft Beer", price: "View Selection", imageSrc: "http://img.b2bpic.net/free-photo/stylish-full-bearded-indian-man-fleece-shirt-apron-holds-glass-beer-standing-counter-brewery_613910-5531.jpg" },
|
||||
{ id: "fine-wines", name: "Fine Wines", price: "View Selection", imageSrc: "http://img.b2bpic.net/free-photo/people-hands-getting-bottle-red-wine_53876-23320.jpg" },
|
||||
]}
|
||||
title="Shop by Category"
|
||||
description="Explore our curated selection of fine beverages."
|
||||
@@ -136,41 +87,11 @@ export default function LandingPage() {
|
||||
textboxLayout="default"
|
||||
useInvertedBackground={false}
|
||||
features={[
|
||||
{
|
||||
id: "1",
|
||||
title: "Variety",
|
||||
subtitle: "Wide variety of wines, spirits & beers",
|
||||
category: "Selection",
|
||||
value: "Endless",
|
||||
},
|
||||
{
|
||||
id: "2",
|
||||
title: "Staff",
|
||||
subtitle: "Knowledgeable, friendly staff",
|
||||
category: "Service",
|
||||
value: "Expert",
|
||||
},
|
||||
{
|
||||
id: "3",
|
||||
title: "Special Orders",
|
||||
subtitle: "Special orders welcome",
|
||||
category: "Custom",
|
||||
value: "Yes",
|
||||
},
|
||||
{
|
||||
id: "4",
|
||||
title: "Community",
|
||||
subtitle: "Serving Bloomfield, CT with pride",
|
||||
category: "Local",
|
||||
value: "Proud",
|
||||
},
|
||||
{
|
||||
id: "5",
|
||||
title: "Events",
|
||||
subtitle: "Private tastings and events",
|
||||
category: "Experience",
|
||||
value: "Available",
|
||||
},
|
||||
{ id: "1", title: "Variety", subtitle: "Wide variety of wines, spirits & beers", category: "Selection", value: "Endless" },
|
||||
{ id: "2", title: "Staff", subtitle: "Knowledgeable, friendly staff", category: "Service", value: "Expert" },
|
||||
{ id: "3", title: "Special Orders", subtitle: "Special orders welcome", category: "Custom", value: "Yes" },
|
||||
{ id: "4", title: "Community", subtitle: "Serving Bloomfield, CT with pride", category: "Local", value: "Proud" },
|
||||
{ id: "5", title: "Events", subtitle: "Private tastings and events", category: "Experience", value: "Available" },
|
||||
]}
|
||||
title="Why Chrystal's"
|
||||
description="Experience the community difference."
|
||||
@@ -182,7 +103,7 @@ export default function LandingPage() {
|
||||
useInvertedBackground={false}
|
||||
title="A Legacy of Quality"
|
||||
description="For over three decades, Chrystal's has been providing the residents of Bloomfield with the finest selection of hand-picked wines, craft spirits, and local beers. Our passion for quality is reflected in every bottle on our shelves."
|
||||
imageSrc="http://img.b2bpic.net/free-photo/man-black-suit-drinks-alcohol-attractive-guy-drinks-whiskey-from-glass_1157-43492.jpg?_wi=2"
|
||||
imageSrc="http://img.b2bpic.net/free-photo/man-black-suit-drinks-alcohol-attractive-guy-drinks-whiskey-from-glass_1157-43492.jpg"
|
||||
imageAlt="Inside our shop"
|
||||
/>
|
||||
</div>
|
||||
@@ -191,37 +112,17 @@ export default function LandingPage() {
|
||||
<FooterSimple
|
||||
columns={[
|
||||
{
|
||||
title: "Store",
|
||||
items: [
|
||||
{
|
||||
label: "Home",
|
||||
href: "/",
|
||||
},
|
||||
{
|
||||
label: "Shop",
|
||||
href: "/shop",
|
||||
},
|
||||
{
|
||||
label: "About",
|
||||
href: "/about",
|
||||
},
|
||||
{
|
||||
label: "Contact",
|
||||
href: "/contact",
|
||||
},
|
||||
title: "Store", items: [
|
||||
{ label: "Home", href: "/" },
|
||||
{ label: "Shop", href: "/shop" },
|
||||
{ label: "About", href: "/about" },
|
||||
{ label: "Contact", href: "/contact" },
|
||||
],
|
||||
},
|
||||
{
|
||||
title: "Info",
|
||||
items: [
|
||||
{
|
||||
label: "Hours: Mon-Sun",
|
||||
href: "#",
|
||||
},
|
||||
{
|
||||
label: "Must be 21+ to enter",
|
||||
href: "#",
|
||||
},
|
||||
title: "Info", items: [
|
||||
{ label: "Hours: Mon-Sun", href: "#" },
|
||||
{ label: "Must be 21+ to enter", href: "#" },
|
||||
],
|
||||
},
|
||||
]}
|
||||
|
||||
@@ -6,7 +6,7 @@ import FooterSimple from '@/components/sections/footer/FooterSimple';
|
||||
import NavbarLayoutFloatingInline from '@/components/navbar/NavbarLayoutFloatingInline';
|
||||
import ProductCardThree from '@/components/sections/product/ProductCardThree';
|
||||
|
||||
export default function LandingPage() {
|
||||
export default function ShopPage() {
|
||||
return (
|
||||
<ThemeProvider
|
||||
defaultButtonVariant="expand-hover"
|
||||
@@ -24,24 +24,13 @@ export default function LandingPage() {
|
||||
<div id="nav" data-section="nav">
|
||||
<NavbarLayoutFloatingInline
|
||||
navItems={[
|
||||
{
|
||||
name: "Home",
|
||||
id: "/",
|
||||
},
|
||||
{
|
||||
name: "Shop",
|
||||
id: "/shop",
|
||||
},
|
||||
{
|
||||
name: "About",
|
||||
id: "/about",
|
||||
},
|
||||
{
|
||||
name: "Contact",
|
||||
id: "/contact",
|
||||
},
|
||||
{ name: "Home", id: "/" },
|
||||
{ name: "Shop", id: "/shop" },
|
||||
{ name: "About", id: "/about" },
|
||||
{ name: "Contact", id: "/contact" },
|
||||
]}
|
||||
brandName="Chrystal's Wine & Spirits"
|
||||
button={{ text: "Contact Us", href: "/contact" }}
|
||||
/>
|
||||
</div>
|
||||
|
||||
@@ -54,18 +43,9 @@ export default function LandingPage() {
|
||||
title="Our Selection"
|
||||
description="Browse our inventory"
|
||||
products={[
|
||||
{
|
||||
id: "p1",
|
||||
name: "Vintage Red",
|
||||
price: "$45",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/crystal-wineglasses-stand-illuminated-wardrobe_8353-658.jpg?_wi=2",
|
||||
},
|
||||
{
|
||||
id: "p2",
|
||||
name: "Smooth Bourbon",
|
||||
price: "$60",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/blurred-shelves-with-wine-bottles_1203-844.jpg?_wi=2",
|
||||
},
|
||||
{ id: "p1", name: "Vintage Red", price: "$45", imageSrc: "http://img.b2bpic.net/free-photo/crystal-wineglasses-stand-illuminated-wardrobe_8353-658.jpg" },
|
||||
{ id: "p2", name: "Smooth Bourbon", price: "$60", imageSrc: "http://img.b2bpic.net/free-photo/blurred-shelves-with-wine-bottles_1203-844.jpg" },
|
||||
{ id: "p3", name: "Reserve Gin", price: "$50", imageSrc: "http://img.b2bpic.net/free-photo/close-up-beer-bottle-wooden-desk_23-2147919792.jpg" },
|
||||
]}
|
||||
/>
|
||||
</div>
|
||||
@@ -74,37 +54,17 @@ export default function LandingPage() {
|
||||
<FooterSimple
|
||||
columns={[
|
||||
{
|
||||
title: "Store",
|
||||
items: [
|
||||
{
|
||||
label: "Home",
|
||||
href: "/",
|
||||
},
|
||||
{
|
||||
label: "Shop",
|
||||
href: "/shop",
|
||||
},
|
||||
{
|
||||
label: "About",
|
||||
href: "/about",
|
||||
},
|
||||
{
|
||||
label: "Contact",
|
||||
href: "/contact",
|
||||
},
|
||||
title: "Store", items: [
|
||||
{ label: "Home", href: "/" },
|
||||
{ label: "Shop", href: "/shop" },
|
||||
{ label: "About", href: "/about" },
|
||||
{ label: "Contact", href: "/contact" },
|
||||
],
|
||||
},
|
||||
{
|
||||
title: "Info",
|
||||
items: [
|
||||
{
|
||||
label: "Hours: Mon-Sun",
|
||||
href: "#",
|
||||
},
|
||||
{
|
||||
label: "Must be 21+ to enter",
|
||||
href: "#",
|
||||
},
|
||||
title: "Info", items: [
|
||||
{ label: "Hours: Mon-Sun", href: "#" },
|
||||
{ label: "Must be 21+ to enter", href: "#" },
|
||||
],
|
||||
},
|
||||
]}
|
||||
|
||||
Reference in New Issue
Block a user