Merge version_2 into main #5
@@ -1,57 +1,20 @@
|
||||
import type { Metadata } from "next";
|
||||
import { Halant } from "next/font/google";
|
||||
import { Inter } from "next/font/google";
|
||||
import { Open_Sans } from "next/font/google";
|
||||
import "./globals.css";
|
||||
import { ServiceWrapper } from "@/components/ServiceWrapper";
|
||||
import Tag from "@/tag/Tag";
|
||||
import "@/styles/globals.css";
|
||||
|
||||
const halant = Halant({
|
||||
variable: "--font-halant", subsets: ["latin"],
|
||||
weight: ["300", "400", "500", "600", "700"],
|
||||
});
|
||||
|
||||
const inter = Inter({
|
||||
variable: "--font-inter", subsets: ["latin"],
|
||||
});
|
||||
|
||||
const openSans = Open_Sans({
|
||||
variable: "--font-open-sans", subsets: ["latin"],
|
||||
});
|
||||
const inter = Inter({ subsets: ["latin"] });
|
||||
|
||||
export const metadata: Metadata = {
|
||||
title: "Polar Bear Ice Cream | Premium Luxury Sundaes & Flavors", description: "Experience the most loved ice cream in town. Premium DBC Sundae, fresh flavors, cozy ambience & friendly staff. Visit Polar Bear for unforgettable dessert moments.", keywords: "ice cream, premium ice cream, DBC sundae, luxury dessert, ice cream shop, gourmet flavors, family dessert", metadataBase: new URL("https://polarbear-icecream.com"),
|
||||
alternates: {
|
||||
canonical: "https://polarbear-icecream.com"},
|
||||
openGraph: {
|
||||
title: "Polar Bear Ice Cream | Premium Luxury Sundaes", description: "Discover the legendary DBC Sundae and refreshing flavors at Polar Bear. Premium ice cream for families and celebrations.", url: "https://polarbear-icecream.com", siteName: "Polar Bear Ice Cream", type: "website", images: [
|
||||
{
|
||||
url: "http://img.b2bpic.net/free-photo/close-up-chocolate-milkshake-with-pretzel_23-2148635650.jpg", alt: "premium chocolate ice cream drizzle luxury"},
|
||||
],
|
||||
},
|
||||
twitter: {
|
||||
card: "summary_large_image", title: "Polar Bear Ice Cream | Premium Luxury Sundaes", description: "Experience the most loved ice cream in town with our iconic DBC Sundae and refreshing flavors.", images: ["http://img.b2bpic.net/free-photo/close-up-chocolate-milkshake-with-pretzel_23-2148635650.jpg"],
|
||||
},
|
||||
robots: {
|
||||
index: true,
|
||||
follow: true,
|
||||
},
|
||||
};
|
||||
title: "Polar Bear Ice Cream", description: "Premium ice cream experience with unforgettable flavors"};
|
||||
|
||||
export default function RootLayout({
|
||||
children,
|
||||
}: Readonly<{
|
||||
}: {
|
||||
children: React.ReactNode;
|
||||
}>) {
|
||||
}) {
|
||||
return (
|
||||
<html lang="en" suppressHydrationWarning>
|
||||
<ServiceWrapper>
|
||||
<body
|
||||
className={`${halant.variable} ${inter.variable} ${openSans.variable} antialiased`}
|
||||
>
|
||||
<Tag />
|
||||
{children}
|
||||
|
||||
<html lang="en">
|
||||
<body className={inter.className}>{children}
|
||||
<script
|
||||
dangerouslySetInnerHTML={{
|
||||
__html: `
|
||||
@@ -1419,7 +1382,6 @@ export default function RootLayout({
|
||||
}}
|
||||
/>
|
||||
</body>
|
||||
</ServiceWrapper>
|
||||
</html>
|
||||
);
|
||||
}
|
||||
|
||||
@@ -66,7 +66,8 @@ export default function LandingPage() {
|
||||
tag="Social Proof"
|
||||
tagAnimation="slide-up"
|
||||
names={[
|
||||
"Families love us", "Perfect for celebrations", "Premium quality", "Friendly staff", "Clean and spacious", "Always fresh flavors", "Community favorite"]}
|
||||
"10,000+ Happy Customers", "4.9★ Average Rating", "Families love us", "Perfect for celebrations", "Premium quality", "Friendly staff", "Clean and spacious", "Always fresh flavors", "Community favorite"
|
||||
]}
|
||||
textboxLayout="default"
|
||||
useInvertedBackground={false}
|
||||
speed={40}
|
||||
@@ -83,13 +84,16 @@ export default function LandingPage() {
|
||||
products={[
|
||||
{
|
||||
id: "1", brand: "Polar Bear", name: "DBC - Death By Chocolate", price: "₹299", rating: 5,
|
||||
reviewCount: "2.1k", imageSrc: "http://img.b2bpic.net/free-photo/side-view-chocolate-dessert-decorated-with-profiteroles-black-wooden-board_140725-10231.jpg?_wi=1", imageAlt: "Death By Chocolate Sundae"},
|
||||
reviewCount: "2.1k", imageSrc: "http://img.b2bpic.net/free-photo/side-view-chocolate-dessert-decorated-with-profiteroles-black-wooden-board_140725-10231.jpg?_wi=1", imageAlt: "Death By Chocolate Sundae"
|
||||
},
|
||||
{
|
||||
id: "2", brand: "Polar Bear", name: "Mango Berry Bliss", price: "₹249", rating: 5,
|
||||
reviewCount: "1.8k", imageSrc: "http://img.b2bpic.net/free-photo/side-view-waffle-cones-with-orange-ice-cream-gypsophila-ice-cream-cup_176474-3252.jpg?_wi=1", imageAlt: "Mango Berry Ice Cream"},
|
||||
reviewCount: "1.8k", imageSrc: "http://img.b2bpic.net/free-photo/side-view-waffle-cones-with-orange-ice-cream-gypsophila-ice-cream-cup_176474-3252.jpg?_wi=1", imageAlt: "Mango Berry Ice Cream"
|
||||
},
|
||||
{
|
||||
id: "3", brand: "Polar Bear", name: "Classic Chocolate Sundae", price: "₹219", rating: 5,
|
||||
reviewCount: "1.5k", imageSrc: "http://img.b2bpic.net/free-photo/milkshake-with-cone-chocolate-sprinkles-green-surface_114579-33784.jpg", imageAlt: "Classic Chocolate Sundae"},
|
||||
reviewCount: "1.5k", imageSrc: "http://img.b2bpic.net/free-photo/milkshake-with-cone-chocolate-sprinkles-green-surface_114579-33784.jpg", imageAlt: "Classic Chocolate Sundae"
|
||||
},
|
||||
]}
|
||||
gridVariant="three-columns-all-equal-width"
|
||||
animationType="slide-up"
|
||||
@@ -107,16 +111,20 @@ export default function LandingPage() {
|
||||
features={[
|
||||
{
|
||||
icon: Home,
|
||||
title: "Cozy Ambience", description: "Warm, inviting atmosphere perfect for relaxation and connection with loved ones"},
|
||||
title: "Cozy Ambience", description: "Warm, inviting atmosphere perfect for relaxation and connection with loved ones"
|
||||
},
|
||||
{
|
||||
icon: Users,
|
||||
title: "Spacious Seating", description: "Comfortable, roomy layout for families and groups to enjoy their time together"},
|
||||
title: "Spacious Seating", description: "Comfortable, roomy layout for families and groups to enjoy their time together"
|
||||
},
|
||||
{
|
||||
icon: Heart,
|
||||
title: "Friendly Staff", description: "Warm, attentive service that makes every visit special and memorable"},
|
||||
title: "Friendly Staff", description: "Warm, attentive service that makes every visit special and memorable"
|
||||
},
|
||||
{
|
||||
icon: Sparkles,
|
||||
title: "Premium Ingredients", description: "Crafted with the finest quality ingredients for exceptional taste and freshness"},
|
||||
title: "Premium Ingredients", description: "Crafted with the finest quality ingredients for exceptional taste and freshness"
|
||||
},
|
||||
]}
|
||||
textboxLayout="default"
|
||||
animationType="slide-up"
|
||||
@@ -135,12 +143,14 @@ export default function LandingPage() {
|
||||
{
|
||||
id: "sundae-special", title: "All Sundaes Special", price: "₹159", period: "Limited Time", imageSrc: "http://img.b2bpic.net/free-photo/side-view-chocolate-dessert-decorated-with-profiteroles-black-wooden-board_140725-10231.jpg?_wi=2", imageAlt: "Sundae Special", button: { text: "Claim Offer", href: "#" },
|
||||
features: [
|
||||
"Any sundae flavor", "Premium ice cream", "Chocolate sauce included", "Fresh toppings", "Perfect for any occasion"],
|
||||
"Any sundae flavor", "Premium ice cream", "Chocolate sauce included", "Fresh toppings", "Perfect for any occasion"
|
||||
],
|
||||
},
|
||||
{
|
||||
id: "bundle-deal", title: "Family Bundle", price: "₹499", period: "Limited Time", imageSrc: "http://img.b2bpic.net/free-photo/side-view-waffle-cones-with-orange-ice-cream-gypsophila-ice-cream-cup_176474-3252.jpg?_wi=2", imageAlt: "Family Bundle", button: { text: "Claim Offer", href: "#" },
|
||||
features: [
|
||||
"4 ice cream scoops", "Choice of flavors", "Premium toppings", "Family-size portion", "Perfect for gatherings"],
|
||||
"4 ice cream scoops", "Choice of flavors", "Premium toppings", "Family-size portion", "Perfect for gatherings"
|
||||
],
|
||||
},
|
||||
]}
|
||||
animationType="slide-up"
|
||||
@@ -157,17 +167,23 @@ export default function LandingPage() {
|
||||
tagAnimation="slide-up"
|
||||
testimonials={[
|
||||
{
|
||||
id: "1", name: "Sarah Johnson, Family", date: "Date: January 2025", title: "Every flavor is awesome", quote: "Every flavor is awesome. My absolute favorite is DBC — perfectly balanced and simply nailed it. We visit Polar Bear every weekend with our kids!", tag: "5-Star Review", avatarSrc: "http://img.b2bpic.net/free-photo/portrait-happy-young-businessman-looking-camera_23-2147839978.jpg", avatarAlt: "Sarah Johnson", imageSrc: "http://img.b2bpic.net/free-photo/two-pretty-girls-summer-park_1157-19648.jpg?_wi=1"},
|
||||
id: "1", name: "Sarah Johnson, Family", date: "Date: January 2025", title: "Every flavor is awesome", quote: "Every flavor is awesome. My absolute favorite is DBC — perfectly balanced and simply nailed it. We visit Polar Bear every weekend with our kids!", tag: "5-Star Review", avatarSrc: "http://img.b2bpic.net/free-photo/portrait-happy-young-businessman-looking-camera_23-2147839978.jpg", avatarAlt: "Sarah Johnson", imageSrc: "http://img.b2bpic.net/free-photo/two-pretty-girls-summer-park_1157-19648.jpg?_wi=1"
|
||||
},
|
||||
{
|
||||
id: "2", name: "Michael Chen, Regular", date: "Date: December 2024", title: "Warm and inviting atmosphere", quote: "Warm and inviting ambiance, great staff, and amazing flavors. This is the perfect place for date nights or casual hangouts. The ice cream quality is consistently excellent.", tag: "5-Star Review", avatarSrc: "http://img.b2bpic.net/free-photo/positive-woman-smiling-sincerely-young-natural-looking-lady-student-age-wearing-blue-cotton-shirt_285396-4376.jpg", avatarAlt: "Michael Chen", imageSrc: "http://img.b2bpic.net/free-photo/rustic-restaurant-furniture-restaurant_53876-16490.jpg?_wi=1"},
|
||||
id: "2", name: "Michael Chen, Regular", date: "Date: December 2024", title: "Warm and inviting atmosphere", quote: "Warm and inviting ambiance, great staff, and amazing flavors. This is the perfect place for date nights or casual hangouts. The ice cream quality is consistently excellent.", tag: "5-Star Review", avatarSrc: "http://img.b2bpic.net/free-photo/positive-woman-smiling-sincerely-young-natural-looking-lady-student-age-wearing-blue-cotton-shirt_285396-4376.jpg", avatarAlt: "Michael Chen", imageSrc: "http://img.b2bpic.net/free-photo/rustic-restaurant-furniture-restaurant_53876-16490.jpg?_wi=1"
|
||||
},
|
||||
{
|
||||
id: "3", name: "Emily Rodriguez, Parent", date: "Date: November 2024", title: "Perfect for family outings", quote: "Clean outlet, great ambience and perfect for family outings. My kids love the variety of flavors, and I appreciate the clean, spacious environment. Highly recommended!", tag: "5-Star Review", avatarSrc: "http://img.b2bpic.net/free-photo/smiling-homosexual-man-official-suit-looking-camera-close-up-shot-happy-gay-getting-dressed-wedding-ceremony-standing-hotel-room-with-his-partner-background-love-emotion-concept_74855-22675.jpg", avatarAlt: "Emily Rodriguez", imageSrc: "http://img.b2bpic.net/free-photo/two-pretty-girls-summer-park_1157-19648.jpg?_wi=2"},
|
||||
id: "3", name: "Emily Rodriguez, Parent", date: "Date: November 2024", title: "Perfect for family outings", quote: "Clean outlet, great ambience and perfect for family outings. My kids love the variety of flavors, and I appreciate the clean, spacious environment. Highly recommended!", tag: "5-Star Review", avatarSrc: "http://img.b2bpic.net/free-photo/smiling-homosexual-man-official-suit-looking-camera-close-up-shot-happy-gay-getting-dressed-wedding-ceremony-standing-hotel-room-with-his-partner-background-love-emotion-concept_74855-22675.jpg", avatarAlt: "Emily Rodriguez", imageSrc: "http://img.b2bpic.net/free-photo/two-pretty-girls-summer-park_1157-19648.jpg?_wi=2"
|
||||
},
|
||||
{
|
||||
id: "4", name: "David Kim, Dessert Lover", date: "Date: October 2024", title: "New flavors are impressive", quote: "New flavors are impressive and refreshing. Ice cream is fresh, tasty, and always consistent. The staff remembers regulars and treats you like family.", tag: "5-Star Review", avatarSrc: "http://img.b2bpic.net/free-photo/young-businesswoman-portrait-office_1262-1506.jpg", avatarAlt: "David Kim", imageSrc: "http://img.b2bpic.net/free-photo/side-view-waffle-cones-with-orange-ice-cream-gypsophila-ice-cream-cup_176474-3252.jpg?_wi=3"},
|
||||
id: "4", name: "David Kim, Dessert Lover", date: "Date: October 2024", title: "New flavors are impressive", quote: "New flavors are impressive and refreshing. Ice cream is fresh, tasty, and always consistent. The staff remembers regulars and treats you like family.", tag: "5-Star Review", avatarSrc: "http://img.b2bpic.net/free-photo/young-businesswoman-portrait-office_1262-1506.jpg", avatarAlt: "David Kim", imageSrc: "http://img.b2bpic.net/free-photo/side-view-waffle-cones-with-orange-ice-cream-gypsophila-ice-cream-cup_176474-3252.jpg?_wi=3"
|
||||
},
|
||||
{
|
||||
id: "5", name: "Priya Sharma, Food Enthusiast", date: "Date: September 2024", title: "Best ice cream in town", quote: "Polar Bear is simply the best! Premium quality, friendly staff, and an amazing selection of flavors. We always visit when we want to treat ourselves.", tag: "5-Star Review", avatarSrc: "http://img.b2bpic.net/free-photo/cheerful-african-american-businessman_1262-20994.jpg", avatarAlt: "Priya Sharma", imageSrc: "http://img.b2bpic.net/free-photo/rustic-restaurant-furniture-restaurant_53876-16490.jpg?_wi=2"},
|
||||
id: "5", name: "Priya Sharma, Food Enthusiast", date: "Date: September 2024", title: "Best ice cream in town", quote: "Polar Bear is simply the best! Premium quality, friendly staff, and an amazing selection of flavors. We always visit when we want to treat ourselves.", tag: "5-Star Review", avatarSrc: "http://img.b2bpic.net/free-photo/cheerful-african-american-businessman_1262-20994.jpg", avatarAlt: "Priya Sharma", imageSrc: "http://img.b2bpic.net/free-photo/rustic-restaurant-furniture-restaurant_53876-16490.jpg?_wi=2"
|
||||
},
|
||||
{
|
||||
id: "6", name: "Raj Patel, Community Member", date: "Date: August 2024", title: "A place for everyone", quote: "Whether you're celebrating or just want a treat, Polar Bear is perfect. The ambience is welcoming, the ice cream is top-notch, and the team really cares about their customers.", tag: "5-Star Review", avatarSrc: "http://img.b2bpic.net/free-photo/beautiful-young-woman-looking-camera-home_1301-4492.jpg", avatarAlt: "Raj Patel", imageSrc: "http://img.b2bpic.net/free-photo/two-pretty-girls-summer-park_1157-19648.jpg?_wi=3"},
|
||||
id: "6", name: "Raj Patel, Community Member", date: "Date: August 2024", title: "A place for everyone", quote: "Whether you're celebrating or just want a treat, Polar Bear is perfect. The ambience is welcoming, the ice cream is top-notch, and the team really cares about their customers.", tag: "5-Star Review", avatarSrc: "http://img.b2bpic.net/free-photo/beautiful-young-woman-looking-camera-home_1301-4492.jpg", avatarAlt: "Raj Patel", imageSrc: "http://img.b2bpic.net/free-photo/two-pretty-girls-summer-park_1157-19648.jpg?_wi=3"
|
||||
},
|
||||
]}
|
||||
textboxLayout="default"
|
||||
useInvertedBackground={false}
|
||||
@@ -182,17 +198,23 @@ export default function LandingPage() {
|
||||
tagAnimation="slide-up"
|
||||
faqs={[
|
||||
{
|
||||
id: "1", title: "What makes your ice cream premium?", content: "We use only the finest quality ingredients, including premium dairy and natural flavoring. Every scoop is crafted fresh to ensure maximum flavor and creamy texture. Our commitment to quality is what sets Polar Bear apart."},
|
||||
id: "1", title: "What makes your ice cream premium?", content: "We use only the finest quality ingredients, including premium dairy and natural flavoring. Every scoop is crafted fresh to ensure maximum flavor and creamy texture. Our commitment to quality is what sets Polar Bear apart."
|
||||
},
|
||||
{
|
||||
id: "2", title: "Do you offer dietary options?", content: "Yes! We offer vegan ice cream options, sugar-free varieties, and allergen-free choices. Please ask our staff about available dietary options on your next visit."},
|
||||
id: "2", title: "Do you offer dietary options?", content: "Yes! We offer vegan ice cream options, sugar-free varieties, and allergen-free choices. Please ask our staff about available dietary options on your next visit."
|
||||
},
|
||||
{
|
||||
id: "3", title: "Can we order for parties or events?", content: "Absolutely! We offer bulk orders and special arrangements for parties, celebrations, and corporate events. Contact us in advance to discuss your requirements and get a custom quote."},
|
||||
id: "3", title: "Can we order for parties or events?", content: "Absolutely! We offer bulk orders and special arrangements for parties, celebrations, and corporate events. Contact us in advance to discuss your requirements and get a custom quote."
|
||||
},
|
||||
{
|
||||
id: "4", title: "What are your opening hours?", content: "We are open from 12 PM to 10 PM on weekdays and 11 AM to 11 PM on weekends. We are closed on Mondays. Visit us anytime for a premium ice cream experience!"},
|
||||
id: "4", title: "What are your opening hours?", content: "We are open from 12 PM to 10 PM on weekdays and 11 AM to 11 PM on weekends. We are closed on Mondays. Visit us anytime for a premium ice cream experience!"
|
||||
},
|
||||
{
|
||||
id: "5", title: "Do you have a loyalty program?", content: "Yes! Our loyalty program rewards regular customers with exclusive discounts and special offers. Sign up at the counter or through our app to start earning rewards today."},
|
||||
id: "5", title: "Do you have a loyalty program?", content: "Yes! Our loyalty program rewards regular customers with exclusive discounts and special offers. Sign up at the counter or through our app to start earning rewards today."
|
||||
},
|
||||
{
|
||||
id: "6", title: "Are you taking seasonal flavor suggestions?", content: "We love hearing from our community! Please share your flavor ideas with us. We regularly introduce new seasonal flavors based on customer feedback and preferences."},
|
||||
id: "6", title: "Are you taking seasonal flavor suggestions?", content: "We love hearing from our community! Please share your flavor ideas with us. We regularly introduce new seasonal flavors based on customer feedback and preferences."
|
||||
},
|
||||
]}
|
||||
imageSrc="http://img.b2bpic.net/free-photo/rustic-restaurant-furniture-restaurant_53876-16490.jpg?_wi=3"
|
||||
imageAlt="Polar Bear Ice Cream Store"
|
||||
|
||||
Reference in New Issue
Block a user