Compare commits
10 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
| cb1a65ec97 | |||
| 21bc9262fa | |||
| adf8f5c977 | |||
| 336fde3e47 | |||
| 8cda6e1ee5 | |||
| b4808e941a | |||
| 639025fb30 | |||
| d796416cfc | |||
| e168a404fe | |||
| 9b2a1b3c46 |
@@ -1,45 +1,21 @@
|
||||
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 +1383,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"
|
||||
|
||||
@@ -2,23 +2,23 @@
|
||||
/* Base units */
|
||||
/* --vw is set by ThemeProvider */
|
||||
|
||||
/* --background: #f5f5f5;;
|
||||
--card: #ffffff;;
|
||||
--foreground: #1c1c1c;;
|
||||
--primary-cta: #1f514c;;
|
||||
--secondary-cta: #ffffff;;
|
||||
--accent: #159c49;;
|
||||
--background-accent: #a8e8ba;; */
|
||||
/* --background: #f877dc;;;;;
|
||||
--card: #ffffff;;;;;
|
||||
--foreground: #1c1c1c;;;;;
|
||||
--primary-cta: #1f514c;;;;;
|
||||
--secondary-cta: #ffffff;;;;;
|
||||
--accent: #159c49;;;;;
|
||||
--background-accent: #a8e8ba;;;;; */
|
||||
|
||||
--background: #f5f5f5;;
|
||||
--card: #ffffff;;
|
||||
--foreground: #1c1c1c;;
|
||||
--primary-cta: #1f514c;;
|
||||
--primary-cta-text: #f5f5f5;;
|
||||
--secondary-cta: #ffffff;;
|
||||
--secondary-cta-text: #1c1c1c;;
|
||||
--accent: #159c49;;
|
||||
--background-accent: #a8e8ba;;
|
||||
--background: #f877dc;;;;;
|
||||
--card: #ffffff;;;;;
|
||||
--foreground: #1c1c1c;;;;;
|
||||
--primary-cta: #1f514c;;;;;
|
||||
--primary-cta-text: #f5f5f5;;;;;
|
||||
--secondary-cta: #ffffff;;;;;
|
||||
--secondary-cta-text: #1c1c1c;;;;;
|
||||
--accent: #159c49;;;;;
|
||||
--background-accent: #a8e8ba;;;;;
|
||||
|
||||
/* text sizing - set by ThemeProvider */
|
||||
/* --text-2xs: clamp(0.465rem, 0.62vw, 0.62rem);
|
||||
|
||||
Reference in New Issue
Block a user