Merge version_2 into main #4
@@ -1,45 +1,20 @@
|
||||
import type { Metadata } from "next";
|
||||
import { Montserrat } from "next/font/google";
|
||||
import { Inter } from "next/font/google";
|
||||
import "./globals.css";
|
||||
import { ServiceWrapper } from "@/components/ServiceWrapper";
|
||||
import Tag from "@/tag/Tag";
|
||||
|
||||
const montserrat = Montserrat({
|
||||
variable: "--font-montserrat", subsets: ["latin"],
|
||||
});
|
||||
|
||||
const inter = Inter({
|
||||
variable: "--font-inter", subsets: ["latin"],
|
||||
});
|
||||
const inter = Inter({ subsets: ["latin"] });
|
||||
|
||||
export const metadata: Metadata = {
|
||||
title: "Angels Ice Cream | Homemade Ice Cream in Stockbridge, GA", description: "Enjoy premium homemade ice cream, rolled ice cream, mangonadas & more at Angels Ice Cream. 4.6★ rated local favorite in Stockbridge, GA. Visit us today!", keywords: "ice cream shop, homemade ice cream, Stockbridge GA, mangonada, rolled ice cream, frozen treats", metadataBase: new URL("https://angelsicecream.local"),
|
||||
openGraph: {
|
||||
title: "Angels Ice Cream | Homemade Ice Cream in Stockbridge", description: "Premium homemade ice cream with rolled ice cream, mangonadas, and signature flavors. Highly rated local favorite.", url: "https://angelsicecream.local", siteName: "Angels Ice Cream", type: "website", images: [
|
||||
{
|
||||
url: "http://img.b2bpic.net/free-photo/ice-cream-cone-stand_169016-6345.jpg", alt: "Angels Ice Cream shop"},
|
||||
],
|
||||
},
|
||||
twitter: {
|
||||
card: "summary_large_image", title: "Angels Ice Cream | Homemade Ice Cream", description: "Discover fresh homemade ice cream and specialty drinks at Angels Ice Cream in Stockbridge, GA.", images: ["http://img.b2bpic.net/free-photo/ice-cream-cone-stand_169016-6345.jpg"],
|
||||
},
|
||||
};
|
||||
title: "Angels Ice Cream", description: "Homemade ice cream made with love in Stockbridge, GA"};
|
||||
|
||||
export default function RootLayout({
|
||||
children,
|
||||
}: Readonly<{
|
||||
}: {
|
||||
children: React.ReactNode;
|
||||
}>) {
|
||||
}) {
|
||||
return (
|
||||
<html lang="en" suppressHydrationWarning>
|
||||
<ServiceWrapper>
|
||||
<body
|
||||
className={`${montserrat.variable} ${inter.variable} antialiased`}
|
||||
>
|
||||
<Tag />
|
||||
{children}
|
||||
|
||||
<html lang="en">
|
||||
<body className={inter.className}>{children}
|
||||
<script
|
||||
dangerouslySetInnerHTML={{
|
||||
__html: `
|
||||
@@ -1407,7 +1382,6 @@ export default function RootLayout({
|
||||
}}
|
||||
/>
|
||||
</body>
|
||||
</ServiceWrapper>
|
||||
</html>
|
||||
);
|
||||
}
|
||||
|
||||
@@ -80,6 +80,35 @@ export default function LandingPage() {
|
||||
/>
|
||||
</div>
|
||||
|
||||
<div id="menu" data-section="menu">
|
||||
<FeatureCardEight
|
||||
title="Menu Items"
|
||||
description="Discover our selection of delicious ice cream treats"
|
||||
tag="Full Menu"
|
||||
tagIcon={Award}
|
||||
textboxLayout="default"
|
||||
useInvertedBackground={true}
|
||||
features={[
|
||||
{
|
||||
id: 1,
|
||||
title: "Fresh Vanilla", description: "Our classic homemade vanilla ice cream made with premium vanilla beans and fresh cream.", imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3AT475hYXuSYMEK0mdz4beIy9o2/uploaded-1772603914561-fc9oojfu.png", imageAlt: "Fresh Vanilla ice cream"
|
||||
},
|
||||
{
|
||||
id: 2,
|
||||
title: "Ferrero Rocher", description: "Rich chocolate hazelnut premium flavor with chocolate and hazelnut pieces throughout.", imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3AT475hYXuSYMEK0mdz4beIy9o2/uploaded-1772603914561-4eo9wfaa.png", imageAlt: "Ferrero Rocher flavor"
|
||||
},
|
||||
{
|
||||
id: 3,
|
||||
title: "Mango Mangonada", description: "Refreshing tropical mango drink with fresh mango puree and authentic spices.", imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3AT475hYXuSYMEK0mdz4beIy9o2/uploaded-1772603914561-3ey5eet9.png", imageAlt: "Mango Mangonada"
|
||||
},
|
||||
{
|
||||
id: 4,
|
||||
title: "Oreo Delight", description: "Cookies and cream classic with crushed Oreos swirled throughout creamy vanilla base.", imageSrc: "http://img.b2bpic.net/free-photo/vanilla-chocolate-ice-cream-cone_123827-21559.jpg?_wi=1", imageAlt: "Oreo Delight"
|
||||
}
|
||||
]}
|
||||
/>
|
||||
</div>
|
||||
|
||||
<div id="features" data-section="features">
|
||||
<FeatureCardEight
|
||||
title="Why Choose Angels Ice Cream"
|
||||
|
||||
Reference in New Issue
Block a user