Merge version_1 into main #1

Merged
bender merged 6 commits from version_1 into main 2026-03-22 01:31:47 +00:00
6 changed files with 78 additions and 37 deletions

View File

@@ -147,7 +147,7 @@ export default function ContactPage() {
{/* Footer */}
<div id="footer" data-section="footer">
<FooterMedia
imageSrc="http://img.b2bpic.net/free-photo/china-stairs-stone-tiles-old-water_1417-577.jpg"
imageSrc="http://img.b2bpic.net/free-photo/china-stairs-stone-tiles-old-water_1417-577.jpg?_wi=5"
imageAlt="Saul Good Liquors storefront"
columns={footerColumns}
logoText="Saul Good Liquors"

View File

@@ -1,24 +1,63 @@
import type { Metadata } from "next";
import { Halant } from "next/font/google";
import { Inter } from "next/font/google";
import { Mulish } from "next/font/google";
import "./globals.css";
import { ServiceWrapper } from "@/components/ServiceWrapper";
import Tag from "@/tag/Tag";
import { getVisualEditScript } from "@/utils/visual-edit-script";
import { Mulish } from "next/font/google";
const halant = Halant({
variable: "--font-halant",
subsets: ["latin"],
weight: ["300", "400", "500", "600", "700"],
});
export const metadata: Metadata = {
title: "Webild components 2",
description: "Generated by create next app",
};
const inter = Inter({
variable: "--font-inter",
subsets: ["latin"],
});
const mulish = Mulish({
variable: "--font-mulish",
subsets: ["latin"],
});
export const metadata: Metadata = {
title: "Saul Good Liquors - Guilford, CT | Wine, Whiskey & Craft Beer",
description: "Your local liquor store in Guilford, CT. Premium wine, whiskey, craft beer & spirits. Knowledgeable staff, special orders, and community-focused service.",
keywords: "liquor store Guilford CT, wine shop near me, whiskey store, craft beer, spirits shop Connecticut",
metadataBase: new URL("https://saulgoodliquors.com"),
alternates: {
canonical: "https://saulgoodliquors.com",
},
openGraph: {
title: "Saul Good Liquors - Guilford, CT",
description: "Premium selections, expert recommendations, and genuine hospitality. Your go-to bottle shop.",
url: "https://saulgoodliquors.com",
siteName: "Saul Good Liquors",
type: "website",
images: [
{
url: "http://img.b2bpic.net/free-photo/fashionable-woman-look-with-black-white-striped-suit-jacket-leather-pants-posing-street-against-large-windows-building-concept-fashion-girl_627829-11650.jpg",
alt: "Saul Good Liquors storefront",
},
],
},
twitter: {
card: "summary_large_image",
title: "Saul Good Liquors - Guilford, CT",
description: "Premium wine, whiskey, beer & spirits with knowledgeable local staff.",
images: [
"http://img.b2bpic.net/free-photo/fashionable-woman-look-with-black-white-striped-suit-jacket-leather-pants-posing-street-against-large-windows-building-concept-fashion-girl_627829-11650.jpg",
],
},
robots: {
index: true,
follow: true,
},
};
export default function RootLayout({
children,
}: Readonly<{
@@ -27,7 +66,9 @@ export default function RootLayout({
return (
<html lang="en" suppressHydrationWarning>
<ServiceWrapper>
<body className={`${mulish.variable} antialiased`}>
<body
className={`${halant.variable} ${inter.variable} ${mulish.variable} antialiased`}
>
<Tag />
{children}
<script
@@ -39,4 +80,4 @@ export default function RootLayout({
</ServiceWrapper>
</html>
);
}
}

View File

@@ -134,7 +134,7 @@ export default function HomePage() {
content: "We're part of Guilford. We sponsor local events, support local causes, and genuinely care about our community. When you shop here, you're supporting your neighbors.",
},
]}
imageSrc="http://img.b2bpic.net/free-photo/tray-with-glasses-with-drinks-close-up_23-2148667929.jpg"
imageSrc="http://img.b2bpic.net/free-photo/tray-with-glasses-with-drinks-close-up_23-2148667929.jpg?_wi=1"
imageAlt="Premium spirits and wine selection at Saul Good Liquors"
mediaAnimation="slide-up"
useInvertedBackground={true}
@@ -164,7 +164,7 @@ export default function HomePage() {
name: "Small Batch Bourbon",
price: "$49.99",
variant: "750ml",
imageSrc: "http://img.b2bpic.net/free-photo/alcoholic-drink-bottle_176474-6031.jpg",
imageSrc: "http://img.b2bpic.net/free-photo/alcoholic-drink-bottle_176474-6031.jpg?_wi=1",
imageAlt: "Small batch bourbon whiskey",
},
{
@@ -172,7 +172,7 @@ export default function HomePage() {
name: "Aged Red Blend",
price: "$24.99",
variant: "750ml",
imageSrc: "http://img.b2bpic.net/free-photo/top-view-red-wine-with-copy-space-left-black-stone-horizontal_176474-4266.jpg",
imageSrc: "http://img.b2bpic.net/free-photo/top-view-red-wine-with-copy-space-left-black-stone-horizontal_176474-4266.jpg?_wi=1",
imageAlt: "Aged red wine blend",
},
]}
@@ -243,7 +243,7 @@ export default function HomePage() {
role: "Regular Customer",
company: "Guilford",
rating: 5,
imageSrc: "http://img.b2bpic.net/free-photo/young-attractive-emotional-girl-business-style-clothes-plain-white-surface-office-audience_78826-2391.jpg",
imageSrc: "http://img.b2bpic.net/free-photo/young-attractive-emotional-girl-business-style-clothes-plain-white-surface-office-audience_78826-2391.jpg?_wi=1",
},
{
id: "testimonial-2",
@@ -251,7 +251,7 @@ export default function HomePage() {
role: "Wine Enthusiast",
company: "Madison",
rating: 5,
imageSrc: "http://img.b2bpic.net/free-photo/people-technology-close-up-shot-happy-face-attractive-bearded-man-sitting-front-laptop-screen-smiling-joyfully-while-messaging-friends-online-via-social-networks_273609-6655.jpg",
imageSrc: "http://img.b2bpic.net/free-photo/people-technology-close-up-shot-happy-face-attractive-bearded-man-sitting-front-laptop-screen-smiling-joyfully-while-messaging-friends-online-via-social-networks_273609-6655.jpg?_wi=1",
},
{
id: "testimonial-3",
@@ -259,7 +259,7 @@ export default function HomePage() {
role: "Event Planner",
company: "Guilford",
rating: 5,
imageSrc: "http://img.b2bpic.net/free-photo/female-wedding-planner-working-ceremony_23-2150167220.jpg",
imageSrc: "http://img.b2bpic.net/free-photo/female-wedding-planner-working-ceremony_23-2150167220.jpg?_wi=1",
},
{
id: "testimonial-4",
@@ -267,7 +267,7 @@ export default function HomePage() {
role: "Cocktail Enthusiast",
company: "Branford",
rating: 5,
imageSrc: "http://img.b2bpic.net/free-photo/man-clapping-hands-isolated-studio_1303-30130.jpg",
imageSrc: "http://img.b2bpic.net/free-photo/man-clapping-hands-isolated-studio_1303-30130.jpg?_wi=1",
},
{
id: "testimonial-5",
@@ -275,7 +275,7 @@ export default function HomePage() {
role: "Host & Entertainer",
company: "Guilford",
rating: 5,
imageSrc: "http://img.b2bpic.net/free-photo/portrait-young-woman-wearing-big-hat_273609-13397.jpg",
imageSrc: "http://img.b2bpic.net/free-photo/portrait-young-woman-wearing-big-hat_273609-13397.jpg?_wi=1",
},
{
id: "testimonial-6",
@@ -283,7 +283,7 @@ export default function HomePage() {
role: "Craft Spirit Collector",
company: "Durham",
rating: 5,
imageSrc: "http://img.b2bpic.net/free-photo/closeup-happy-joyful-bearded-guy-posing-indoors_74855-2696.jpg",
imageSrc: "http://img.b2bpic.net/free-photo/closeup-happy-joyful-bearded-guy-posing-indoors_74855-2696.jpg?_wi=1",
},
]}
/>
@@ -307,7 +307,7 @@ export default function HomePage() {
<div id="footer" data-section="footer">
<FooterMedia
imageSrc="http://img.b2bpic.net/free-photo/china-stairs-stone-tiles-old-water_1417-577.jpg"
imageSrc="http://img.b2bpic.net/free-photo/china-stairs-stone-tiles-old-water_1417-577.jpg?_wi=1"
imageAlt="Saul Good Liquors storefront"
logoText="Saul Good Liquors"
copyrightText="© 2024 Saul Good Liquors. All rights reserved."

View File

@@ -88,7 +88,7 @@ export default function ReviewsPage() {
role: "Regular Customer",
company: "Guilford",
rating: 5,
imageSrc: "http://img.b2bpic.net/free-photo/young-attractive-emotional-girl-business-style-clothes-plain-white-surface-office-audience_78826-2391.jpg",
imageSrc: "http://img.b2bpic.net/free-photo/young-attractive-emotional-girl-business-style-clothes-plain-white-surface-office-audience_78826-2391.jpg?_wi=2",
},
{
id: "testimonial-2",
@@ -96,7 +96,7 @@ export default function ReviewsPage() {
role: "Wine Enthusiast",
company: "Madison",
rating: 5,
imageSrc: "http://img.b2bpic.net/free-photo/people-technology-close-up-shot-happy-face-attractive-bearded-man-sitting-front-laptop-screen-smiling-joyfully-while-messaging-friends-online-via-social-networks_273609-6655.jpg",
imageSrc: "http://img.b2bpic.net/free-photo/people-technology-close-up-shot-happy-face-attractive-bearded-man-sitting-front-laptop-screen-smiling-joyfully-while-messaging-friends-online-via-social-networks_273609-6655.jpg?_wi=2",
},
{
id: "testimonial-3",
@@ -104,7 +104,7 @@ export default function ReviewsPage() {
role: "Event Planner",
company: "Guilford",
rating: 5,
imageSrc: "http://img.b2bpic.net/free-photo/female-wedding-planner-working-ceremony_23-2150167220.jpg",
imageSrc: "http://img.b2bpic.net/free-photo/female-wedding-planner-working-ceremony_23-2150167220.jpg?_wi=2",
},
{
id: "testimonial-4",
@@ -112,7 +112,7 @@ export default function ReviewsPage() {
role: "Cocktail Enthusiast",
company: "Branford",
rating: 5,
imageSrc: "http://img.b2bpic.net/free-photo/man-clapping-hands-isolated-studio_1303-30130.jpg",
imageSrc: "http://img.b2bpic.net/free-photo/man-clapping-hands-isolated-studio_1303-30130.jpg?_wi=2",
},
{
id: "testimonial-5",
@@ -120,7 +120,7 @@ export default function ReviewsPage() {
role: "Host & Entertainer",
company: "Guilford",
rating: 5,
imageSrc: "http://img.b2bpic.net/free-photo/portrait-young-woman-wearing-big-hat_273609-13397.jpg",
imageSrc: "http://img.b2bpic.net/free-photo/portrait-young-woman-wearing-big-hat_273609-13397.jpg?_wi=2",
},
{
id: "testimonial-6",
@@ -128,7 +128,7 @@ export default function ReviewsPage() {
role: "Craft Spirit Collector",
company: "Durham",
rating: 5,
imageSrc: "http://img.b2bpic.net/free-photo/closeup-happy-joyful-bearded-guy-posing-indoors_74855-2696.jpg",
imageSrc: "http://img.b2bpic.net/free-photo/closeup-happy-joyful-bearded-guy-posing-indoors_74855-2696.jpg?_wi=2",
},
]}
/>
@@ -150,7 +150,7 @@ export default function ReviewsPage() {
<div id="footer" data-section="footer">
<FooterMedia
imageSrc="http://img.b2bpic.net/free-photo/china-stairs-stone-tiles-old-water_1417-577.jpg"
imageSrc="http://img.b2bpic.net/free-photo/china-stairs-stone-tiles-old-water_1417-577.jpg?_wi=4"
imageAlt="Saul Good Liquors storefront"
logoText="Saul Good Liquors"
copyrightText="© 2024 Saul Good Liquors. All rights reserved."

View File

@@ -61,7 +61,7 @@ export default function SelectionPage() {
},
]}
buttonAnimation="slide-up"
imageSrc="http://img.b2bpic.net/free-photo/tray-with-glasses-with-drinks-close-up_23-2148667929.jpg"
imageSrc="http://img.b2bpic.net/free-photo/tray-with-glasses-with-drinks-close-up_23-2148667929.jpg?_wi=2"
imageAlt="Premium spirits and wine selection at Saul Good Liquors"
mediaAnimation="slide-up"
imagePosition="right"
@@ -98,7 +98,7 @@ export default function SelectionPage() {
name: "Aged Red Blend",
price: "$24.99",
variant: "750ml",
imageSrc: "http://img.b2bpic.net/free-photo/top-view-red-wine-with-copy-space-left-black-stone-horizontal_176474-4266.jpg",
imageSrc: "http://img.b2bpic.net/free-photo/top-view-red-wine-with-copy-space-left-black-stone-horizontal_176474-4266.jpg?_wi=2",
imageAlt: "Premium aged red wine blend",
},
{
@@ -106,7 +106,7 @@ export default function SelectionPage() {
name: "Sauvignon Blanc",
price: "$18.99",
variant: "750ml",
imageSrc: "http://img.b2bpic.net/free-photo/top-view-red-wine-with-copy-space-left-black-stone-horizontal_176474-4266.jpg",
imageSrc: "http://img.b2bpic.net/free-photo/top-view-red-wine-with-copy-space-left-black-stone-horizontal_176474-4266.jpg?_wi=3",
imageAlt: "Crisp sauvignon blanc white wine",
},
{
@@ -114,7 +114,7 @@ export default function SelectionPage() {
name: "Pinot Noir Reserve",
price: "$32.99",
variant: "750ml",
imageSrc: "http://img.b2bpic.net/free-photo/top-view-red-wine-with-copy-space-left-black-stone-horizontal_176474-4266.jpg",
imageSrc: "http://img.b2bpic.net/free-photo/top-view-red-wine-with-copy-space-left-black-stone-horizontal_176474-4266.jpg?_wi=4",
imageAlt: "Premium pinot noir reserve",
},
{
@@ -122,7 +122,7 @@ export default function SelectionPage() {
name: "Prosecco Spumante",
price: "$16.99",
variant: "750ml",
imageSrc: "http://img.b2bpic.net/free-photo/top-view-red-wine-with-copy-space-left-black-stone-horizontal_176474-4266.jpg",
imageSrc: "http://img.b2bpic.net/free-photo/top-view-red-wine-with-copy-space-left-black-stone-horizontal_176474-4266.jpg?_wi=5",
imageAlt: "Italian prosecco sparkling wine",
},
{
@@ -130,7 +130,7 @@ export default function SelectionPage() {
name: "Chardonnay Unoaked",
price: "$14.99",
variant: "750ml",
imageSrc: "http://img.b2bpic.net/free-photo/top-view-red-wine-with-copy-space-left-black-stone-horizontal_176474-4266.jpg",
imageSrc: "http://img.b2bpic.net/free-photo/top-view-red-wine-with-copy-space-left-black-stone-horizontal_176474-4266.jpg?_wi=6",
imageAlt: "Unoaked chardonnay white wine",
},
{
@@ -138,7 +138,7 @@ export default function SelectionPage() {
name: "Cabernet Sauvignon",
price: "$28.99",
variant: "750ml",
imageSrc: "http://img.b2bpic.net/free-photo/top-view-red-wine-with-copy-space-left-black-stone-horizontal_176474-4266.jpg",
imageSrc: "http://img.b2bpic.net/free-photo/top-view-red-wine-with-copy-space-left-black-stone-horizontal_176474-4266.jpg?_wi=7",
imageAlt: "Full-bodied cabernet sauvignon red wine",
},
]}
@@ -171,7 +171,7 @@ export default function SelectionPage() {
content: "Complete your home bar with our range of liqueurs, cordials, and specialty bottles. Perfect for cocktails, entertaining, or gift-giving to fellow spirits enthusiasts.",
},
]}
imageSrc="http://img.b2bpic.net/free-photo/alcoholic-drink-bottle_176474-6031.jpg"
imageSrc="http://img.b2bpic.net/free-photo/alcoholic-drink-bottle_176474-6031.jpg?_wi=2"
imageAlt="Premium bourbon whiskey bottle collection"
mediaAnimation="slide-up"
useInvertedBackground={true}
@@ -181,7 +181,7 @@ export default function SelectionPage() {
<div id="footer" data-section="footer">
<FooterMedia
imageSrc="http://img.b2bpic.net/free-photo/china-stairs-stone-tiles-old-water_1417-577.jpg"
imageSrc="http://img.b2bpic.net/free-photo/china-stairs-stone-tiles-old-water_1417-577.jpg?_wi=2"
imageAlt="Saul Good Liquors storefront"
logoText="Saul Good Liquors"
copyrightText="© 2024 Saul Good Liquors. All rights reserved."

View File

@@ -99,7 +99,7 @@ export default function SpecialOrdersPage() {
"Pricing is always competitive and transparent. We source at distributor rates to give you fair pricing on special orders. Some rare or limited bottles may have higher premiums based on market availability. No hidden fees—what we quote is what you pay.",
},
]}
imageSrc="http://img.b2bpic.net/free-photo/tray-with-glasses-with-drinks-close-up_23-2148667929.jpg"
imageSrc="http://img.b2bpic.net/free-photo/tray-with-glasses-with-drinks-close-up_23-2148667929.jpg?_wi=3"
imageAlt="Premium spirits collection"
mediaAnimation="slide-up"
useInvertedBackground={false}
@@ -123,7 +123,7 @@ export default function SpecialOrdersPage() {
<div id="footer" data-section="footer">
<FooterMedia
imageSrc="http://img.b2bpic.net/free-photo/china-stairs-stone-tiles-old-water_1417-577.jpg"
imageSrc="http://img.b2bpic.net/free-photo/china-stairs-stone-tiles-old-water_1417-577.jpg?_wi=3"
imageAlt="Saul Good Liquors storefront"
logoText="Saul Good Liquors"
copyrightText="© 2024 Saul Good Liquors. All rights reserved."