Merge version_2 into main #4

Merged
bender merged 2 commits from version_2 into main 2026-03-03 22:09:25 +00:00
2 changed files with 7 additions and 46 deletions

View File

@@ -1,58 +1,20 @@
import type { Metadata } from "next";
import { Roboto } from "next/font/google";
import { Halant } from "next/font/google";
import { Inter } from "next/font/google";
import "./globals.css";
import { ServiceWrapper } from "@/components/ServiceWrapper";
import Tag from "@/tag/Tag";
const roboto = Roboto({
variable: "--font-roboto", subsets: ["latin"],
weight: ["100", "300", "400", "500", "700", "900"],
});
const halant = Halant({
variable: "--font-halant", subsets: ["latin"],
weight: ["300", "400", "500", "600", "700"],
});
const inter = Inter({
variable: "--font-inter", subsets: ["latin"],
});
const inter = Inter({ subsets: ["latin"] });
export const metadata: Metadata = {
title: "CoasterAds | Coaster Advertising for Cafes", description: "Reach engaged customers with premium coaster advertising in cafes. Custom design, strategic placement, real-time analytics. Start your campaign today.", keywords: "coaster advertising, cafe marketing, brand placement, local advertising, coffee shop marketing", metadataBase: new URL("https://coasterads.com"),
alternates: {
canonical: "https://coasterads.com"},
openGraph: {
title: "CoasterAds | Coaster Advertising Platform", description: "Transform your brand visibility with strategically placed coasters in premium cafes. Millions of engaged customers, one proven platform.", url: "https://coasterads.com", siteName: "CoasterAds", type: "website", images: [
{
url: "http://img.b2bpic.net/free-psd/japandi-template-design_23-2151892306.jpg", alt: "CoasterAds - Premium Coaster Advertising"},
],
},
twitter: {
card: "summary_large_image", title: "CoasterAds | Coaster Advertising Platform", description: "Reach coffee lovers with premium coaster advertising in premium cafes. Custom design, measurable ROI.", images: ["http://img.b2bpic.net/free-psd/japandi-template-design_23-2151892306.jpg"],
},
robots: {
index: true,
follow: true,
},
};
title: "CoasterAds - Premium Cafe Advertising", description: "Reach engaged customers at the perfect moment with strategic coaster advertising in premium cafes."};
export default function RootLayout({
children,
}: Readonly<{
}: {
children: React.ReactNode;
}>) {
}) {
return (
<html lang="en" suppressHydrationWarning>
<ServiceWrapper>
<body
className={`${roboto.variable} ${halant.variable} ${inter.variable} antialiased`}
>
<Tag />
{children}
<html lang="en">
<body className={inter.className}>{children}
<script
dangerouslySetInnerHTML={{
__html: `
@@ -1420,7 +1382,6 @@ export default function RootLayout({
}}
/>
</body>
</ServiceWrapper>
</html>
);
}

View File

@@ -196,7 +196,7 @@ export default function LandingPage() {
},
{
id: "growth", badge: "Growth", badgeIcon: Sparkles,
price: "$6,500/mo", subtitle: "Most popular for growing brands seeking regional impact", buttons: [
price: "$6,500/mo", subtitle: "Most popular — Recommended for growing brands seeking regional impact", buttons: [
{ text: "Get Started", href: "#" },
{ text: "Contact Sales", href: "#" },
],