Compare commits
8 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
| 59c9dc54e0 | |||
| 0e100283d6 | |||
| 1ef782826e | |||
| a2cc6830d4 | |||
| 5c9a02d0d5 | |||
| 25064cdc49 | |||
| eaf051e9e8 | |||
| 2e105947aa |
@@ -1,49 +1,20 @@
|
||||
import type { Metadata } from "next";
|
||||
import { Figtree } from "next/font/google";
|
||||
import { Inter } from "next/font/google";
|
||||
import "./globals.css";
|
||||
import { ServiceWrapper } from "@/components/ServiceWrapper";
|
||||
import Tag from "@/tag/Tag";
|
||||
|
||||
const figtree = Figtree({
|
||||
variable: "--font-figtree", subsets: ["latin"],
|
||||
});
|
||||
|
||||
const inter = Inter({
|
||||
variable: "--font-inter", subsets: ["latin"],
|
||||
});
|
||||
const inter = Inter({ subsets: ["latin"] });
|
||||
|
||||
export const metadata: Metadata = {
|
||||
title: "CS GO Cups - Premium Drinkware Collection", description: "Discover premium quality cups and mugs for every occasion. Shop our curated collection of elegant, durable drinkware designed for coffee lovers.", keywords: "premium cups, coffee mugs, drinkware, ceramic cups, travel mugs, insulated cups", openGraph: {
|
||||
title: "CS GO Cups - Premium Drinkware", description: "Explore our exclusive collection of high-quality cups and mugs for every lifestyle.", siteName: "CS GO Cups", type: "website", images: [
|
||||
{
|
||||
url: "http://img.b2bpic.net/free-photo/front-view-cup-milk-with-crackers-sunglasses-grey-surface_140725-20359.jpg", alt: "CS GO Premium Cups Collection"
|
||||
}
|
||||
]
|
||||
},
|
||||
twitter: {
|
||||
card: "summary_large_image", title: "CS GO Cups - Premium Drinkware", description: "Discover premium quality cups and mugs for every occasion.", images: ["http://img.b2bpic.net/free-photo/front-view-cup-milk-with-crackers-sunglasses-grey-surface_140725-20359.jpg"]
|
||||
},
|
||||
robots: {
|
||||
index: true,
|
||||
follow: true
|
||||
}
|
||||
};
|
||||
title: "CS GO Cups - Premium Drinkware Collection", description: "Discover our curated collection of high-quality drinkware designed for style and functionality. From morning coffee to evening tea, we have the perfect cup for you."};
|
||||
|
||||
export default function RootLayout({
|
||||
children,
|
||||
}: Readonly<{
|
||||
}: {
|
||||
children: React.ReactNode;
|
||||
}>) {
|
||||
}) {
|
||||
return (
|
||||
<html lang="en" suppressHydrationWarning>
|
||||
<ServiceWrapper>
|
||||
<body
|
||||
className={`${figtree.variable} ${inter.variable} antialiased`}
|
||||
>
|
||||
<Tag />
|
||||
{children}
|
||||
|
||||
<html lang="en">
|
||||
<body className={inter.className}>{children}
|
||||
<script
|
||||
dangerouslySetInnerHTML={{
|
||||
__html: `
|
||||
@@ -1411,7 +1382,6 @@ export default function RootLayout({
|
||||
}}
|
||||
/>
|
||||
</body>
|
||||
</ServiceWrapper>
|
||||
</html>
|
||||
);
|
||||
}
|
||||
@@ -1,4 +1,4 @@
|
||||
"use client"
|
||||
"use client";
|
||||
|
||||
import NavbarStyleCentered from '@/components/navbar/NavbarStyleCentered/NavbarStyleCentered';
|
||||
import HeroBillboardCarousel from '@/components/sections/hero/HeroBillboardCarousel';
|
||||
@@ -52,19 +52,19 @@ export default function LandingPage() {
|
||||
]}
|
||||
mediaItems={[
|
||||
{
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/front-view-cup-milk-with-crackers-sunglasses-grey-surface_140725-20359.jpg", imageAlt: "Premium ceramic coffee mug"
|
||||
imageSrc: "https://images.unsplash.com/photo-1501339847302-ac426a36e75d?w=800&q=80", imageAlt: "Premium ceramic coffee mug"
|
||||
},
|
||||
{
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/front-view-smiley-couple-having-warm-drink-car-s-trunk-while-road-trip_23-2148851155.jpg", imageAlt: "Travel insulated mug"
|
||||
imageSrc: "https://images.unsplash.com/photo-1511920170033-f8396924c348?w=800&q=80", imageAlt: "Travel insulated mug"
|
||||
},
|
||||
{
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/slice-chocolate-cake-with-cup-tea-top-view_114579-17493.jpg", imageAlt: "Elegant glass cup"
|
||||
imageSrc: "https://images.unsplash.com/photo-1495521821757-a1efb6729352?w=800&q=80", imageAlt: "Elegant glass cup"
|
||||
},
|
||||
{
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/person-wearing-pink-sweater-holding-blue-mug_181624-6623.jpg", imageAlt: "Personalized branded cup"
|
||||
imageSrc: "https://images.unsplash.com/photo-1571934811356-5cc061b6821f?w=800&q=80", imageAlt: "Designer ceramic mug collection"
|
||||
},
|
||||
{
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/cup-with-tea-herbs_23-2148550487.jpg", imageAlt: "Double wall insulated cup"
|
||||
imageSrc: "https://images.unsplash.com/photo-1506905925346-21bda4d32df4?w=800&q=80", imageAlt: "Artisan handcrafted cup"
|
||||
}
|
||||
]}
|
||||
/>
|
||||
@@ -133,6 +133,9 @@ export default function LandingPage() {
|
||||
animationType="slide-up"
|
||||
textboxLayout="default"
|
||||
useInvertedBackground={true}
|
||||
buttons={[
|
||||
{ text: "Book a Call", href: "/contact" }
|
||||
]}
|
||||
/>
|
||||
</div>
|
||||
|
||||
@@ -159,6 +162,9 @@ export default function LandingPage() {
|
||||
animationType="slide-up"
|
||||
textboxLayout="default"
|
||||
useInvertedBackground={false}
|
||||
buttons={[
|
||||
{ text: "Book a Call", href: "/contact" }
|
||||
]}
|
||||
plans={[
|
||||
{
|
||||
id: "1", price: "$49.99", name: "Single Cup", buttons: [
|
||||
@@ -201,6 +207,9 @@ export default function LandingPage() {
|
||||
textboxLayout="default"
|
||||
useInvertedBackground={true}
|
||||
speed={40}
|
||||
buttons={[
|
||||
{ text: "Book a Call", href: "/contact" }
|
||||
]}
|
||||
testimonials={[
|
||||
{
|
||||
id: "1", name: "Sarah Johnson", handle: "@sarahj_coffee", testimonial: "These cups are absolutely stunning! The quality is exceptional and they arrived perfectly packaged. Highly recommend CS GO!", imageSrc: "http://img.b2bpic.net/free-photo/studio-portrait-successful-young-businesswoman_1262-5844.jpg", imageAlt: "Sarah Johnson profile"
|
||||
|
||||
Reference in New Issue
Block a user