diff --git a/src/app/about/page.tsx b/src/app/about/page.tsx index 7e431ee..18c5a02 100644 --- a/src/app/about/page.tsx +++ b/src/app/about/page.tsx @@ -79,7 +79,7 @@ export default function AboutPage() { tagAnimation="slide-up" textboxLayout="default" useInvertedBackground={false} - imageSrc="http://img.b2bpic.net/free-photo/happy-pub-owner-welcoming-guest-while-standing-entrance-door-looking-camera_637285-5713.jpg" + imageSrc="http://img.b2bpic.net/free-photo/happy-pub-owner-welcoming-guest-while-standing-entrance-door-looking-camera_637285-5713.jpg?_wi=2" imageAlt="Get Fruity Cafe team and storefront" buttons={[ { text: "Visit Us Today", href: "/contact" }, @@ -103,28 +103,28 @@ export default function AboutPage() { id: "quality", title: "Premium Quality", tags: ["Excellence", "Standards"], - imageSrc: "http://img.b2bpic.net/free-photo/close-up-arrangement-organic-vegetables_23-2148538677.jpg", + imageSrc: "http://img.b2bpic.net/free-photo/close-up-arrangement-organic-vegetables_23-2148538677.jpg?_wi=2", imageAlt: "Premium quality ingredients", }, { id: "health", title: "Health Consciousness", tags: ["Wellness", "Nutrition"], - imageSrc: "http://img.b2bpic.net/free-photo/two-sporty-girls-kitchen-preparing-food_1303-24786.jpg", + imageSrc: "http://img.b2bpic.net/free-photo/two-sporty-girls-kitchen-preparing-food_1303-24786.jpg?_wi=2", imageAlt: "Health and wellness focus", }, { id: "community", title: "Community Focused", tags: ["Connection", "Support"], - imageSrc: "http://img.b2bpic.net/free-photo/portrait-waitress-standing-with-disposable-coffee-cup_107420-12314.jpg", + imageSrc: "http://img.b2bpic.net/free-photo/portrait-waitress-standing-with-disposable-coffee-cup_107420-12314.jpg?_wi=2", imageAlt: "Community and connection", }, { id: "innovation", title: "Innovation in Flavors", tags: ["Creativity", "Fresh Ideas"], - imageSrc: "http://img.b2bpic.net/free-photo/top-view-slices-bread-sandwiches-with-salad_23-2148640157.jpg", + imageSrc: "http://img.b2bpic.net/free-photo/top-view-slices-bread-sandwiches-with-salad_23-2148640157.jpg?_wi=2", imageAlt: "Innovative flavor combinations", }, ]} @@ -145,7 +145,7 @@ export default function AboutPage() { quote: "Get Fruity helped me stick to my healthy eating goals. The smoothies are delicious and I feel energized every time I visit.", name: "Sarah M.", role: "Wellness Journey", - imageSrc: "http://img.b2bpic.net/free-photo/smiling-woman-with-olives-beer_23-2147680964.jpg", + imageSrc: "http://img.b2bpic.net/free-photo/smiling-woman-with-olives-beer_23-2147680964.jpg?_wi=2", imageAlt: "Sarah, wellness advocate", }, { @@ -154,7 +154,7 @@ export default function AboutPage() { quote: "It's refreshing to support a local business that genuinely cares about quality and customer satisfaction. Highly recommend!", name: "Marcus L.", role: "Local Advocate", - imageSrc: "http://img.b2bpic.net/free-photo/latin-man-his-30s-smiling-making-eye-contact-while-drinking-coffee-sandwich-his-lunch-break-food-court_662251-228.jpg", + imageSrc: "http://img.b2bpic.net/free-photo/latin-man-his-30s-smiling-making-eye-contact-while-drinking-coffee-sandwich-his-lunch-break-food-court_662251-228.jpg?_wi=2", imageAlt: "Marcus, local business supporter", }, { @@ -163,7 +163,7 @@ export default function AboutPage() { quote: "Our whole family loves Get Fruity. The staff is friendly, the food is fresh, and everyone finds something they enjoy.", name: "Patricia T.", role: "Family Values", - imageSrc: "http://img.b2bpic.net/free-photo/front-view-woman-restoring-wooden-furniture_23-2150062511.jpg", + imageSrc: "http://img.b2bpic.net/free-photo/front-view-woman-restoring-wooden-furniture_23-2150062511.jpg?_wi=2", imageAlt: "Patricia, family-focused customer", }, ]} diff --git a/src/app/contact/page.tsx b/src/app/contact/page.tsx index 61a363e..1a54851 100644 --- a/src/app/contact/page.tsx +++ b/src/app/contact/page.tsx @@ -78,7 +78,7 @@ export default function ContactPage() { tagAnimation="slide-up" textboxLayout="default" useInvertedBackground={false} - imageSrc="http://img.b2bpic.net/free-photo/happy-pub-owner-welcoming-guest-while-standing-entrance-door-looking-camera_637285-5713.jpg" + imageSrc="http://img.b2bpic.net/free-photo/happy-pub-owner-welcoming-guest-while-standing-entrance-door-looking-camera_637285-5713.jpg?_wi=3" imageAlt="Get Fruity Cafe storefront in Conyers" buttons={[ { @@ -105,7 +105,7 @@ export default function ContactPage() { variant: "sparkles-gradient", }} useInvertedBackground={true} - imageSrc="http://img.b2bpic.net/free-photo/colorful-healthy-breakfast-sweet-deserts-few-different-chia-puddings-glass-jars-wooden-table-kitchen-home_343596-1244.jpg" + imageSrc="http://img.b2bpic.net/free-photo/colorful-healthy-breakfast-sweet-deserts-few-different-chia-puddings-glass-jars-wooden-table-kitchen-home_343596-1244.jpg?_wi=5" imageAlt="Fresh smoothie bowl ready to enjoy" mediaAnimation="slide-up" mediaPosition="right" diff --git a/src/app/layout.tsx b/src/app/layout.tsx index 2ed8420..07491b5 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -1,24 +1,61 @@ import type { Metadata } from "next"; import { Halant } from "next/font/google"; import { Inter } from "next/font/google"; +import { Manrope } 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 { Manrope } 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 manrope = Manrope({ variable: "--font-manrope", subsets: ["latin"], }); +export const metadata: Metadata = { + title: "Get Fruity Cafe - Fresh Smoothies & Healthy Eats in Conyers, GA", + description: "Premium smoothie bar and healthy cafe in Conyers, GA. Fresh smoothies, wraps, acai bowls, salads & healthy snacks. Order online or visit us today!", + keywords: "smoothies, healthy cafe, wraps, acai bowls, Conyers GA, fresh juice, vegan options, healthy eats", + metadataBase: new URL("https://getfruitycafe.com"), + alternates: { + canonical: "https://getfruitycafe.com", + }, + openGraph: { + title: "Get Fruity Cafe - Fresh Smoothies & Healthy Food", + description: "Premium smoothie bar and healthy cafe in Conyers, GA. Fresh ingredients, energetic vibe, and delicious flavors.", + url: "https://getfruitycafe.com", + siteName: "Get Fruity Cafe", + images: [ + { + url: "http://img.b2bpic.net/free-photo/colorful-healthy-breakfast-sweet-deserts-few-different-chia-puddings-glass-jars-wooden-table-kitchen-home_343596-1244.jpg", + alt: "fresh smoothie bowl colorful fruits", + }, + ], + type: "website", + }, + twitter: { + card: "summary_large_image", + title: "Get Fruity Cafe - Fresh Smoothies & Healthy Eats", + description: "Premium smoothie cafe in Conyers, GA with fresh ingredients and healthy options.", + images: ["http://img.b2bpic.net/free-photo/colorful-healthy-breakfast-sweet-deserts-few-different-chia-puddings-glass-jars-wooden-table-kitchen-home_343596-1244.jpg"], + }, + robots: { + index: true, + follow: true, + }, +}; + export default function RootLayout({ children, }: Readonly<{ @@ -27,7 +64,9 @@ export default function RootLayout({ return ( - + {children}