Compare commits
5 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
| a861aef4c2 | |||
| 358598e512 | |||
| 302586867a | |||
| 2993922d57 | |||
| f13153320f |
@@ -1,57 +1,20 @@
|
|||||||
import type { Metadata } from "next";
|
import type { Metadata } from "next";
|
||||||
import { Halant } from "next/font/google";
|
|
||||||
import { Inter } from "next/font/google";
|
import { Inter } from "next/font/google";
|
||||||
import { Open_Sans } from "next/font/google";
|
|
||||||
import "./globals.css";
|
import "./globals.css";
|
||||||
import { ServiceWrapper } from "@/components/ServiceWrapper";
|
|
||||||
import Tag from "@/tag/Tag";
|
|
||||||
|
|
||||||
const halant = Halant({
|
const inter = Inter({ subsets: ["latin"] });
|
||||||
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"],
|
|
||||||
});
|
|
||||||
|
|
||||||
export const metadata: Metadata = {
|
export const metadata: Metadata = {
|
||||||
title: "Baker Fırın & Kafe | Premium Bakery & Café in Antalya", description: "Award-winning bakery café in Antalya, Turkey. Fresh pastries, Turkish breakfast, premium coffee & famous desserts. 24-hour service with delivery & dine-in options.", keywords: "bakery Antalya, café Muratpaşa, Turkish breakfast Antalya, pastries, fresh bread, İzmir Bombası, coffee shop, artisan bakery", metadataBase: new URL("https://bakerfirinkafe.com"),
|
title: "Baker Fırın & Kafe", description: "Fresh Bakery & Premium Coffee in Antalya"};
|
||||||
alternates: {
|
|
||||||
canonical: "https://bakerfirinkafe.com"},
|
|
||||||
openGraph: {
|
|
||||||
title: "Baker Fırın & Kafe - Artisan Bakery in Antalya", description: "Experience premium fresh pastries, Turkish breakfast, and exceptional coffee at our 24-hour bakery café.", url: "https://bakerfirinkafe.com", siteName: "Baker Fırın & Kafe", images: [
|
|
||||||
{
|
|
||||||
url: "http://img.b2bpic.net/free-photo/gray-bread-table_140725-4736.jpg", alt: "Baker Fırın & Kafe - Premium Bakery Café"},
|
|
||||||
],
|
|
||||||
type: "website"},
|
|
||||||
twitter: {
|
|
||||||
card: "summary_large_image", title: "Baker Fırın & Kafe | Premium Bakery in Antalya", description: "Fresh pastries, Turkish breakfast & premium coffee. Open 24/7 with delivery & dine-in options.", images: ["http://img.b2bpic.net/free-photo/gray-bread-table_140725-4736.jpg"],
|
|
||||||
},
|
|
||||||
robots: {
|
|
||||||
index: true,
|
|
||||||
follow: true,
|
|
||||||
},
|
|
||||||
};
|
|
||||||
|
|
||||||
export default function RootLayout({
|
export default function RootLayout({
|
||||||
children,
|
children,
|
||||||
}: Readonly<{
|
}: {
|
||||||
children: React.ReactNode;
|
children: React.ReactNode;
|
||||||
}>) {
|
}) {
|
||||||
return (
|
return (
|
||||||
<html lang="en" suppressHydrationWarning>
|
<html lang="en">
|
||||||
<ServiceWrapper>
|
<body className={inter.className}>{children}
|
||||||
<body
|
|
||||||
className={`${halant.variable} ${inter.variable} ${openSans.variable} antialiased`}
|
|
||||||
>
|
|
||||||
<Tag />
|
|
||||||
{children}
|
|
||||||
|
|
||||||
<script
|
<script
|
||||||
dangerouslySetInnerHTML={{
|
dangerouslySetInnerHTML={{
|
||||||
__html: `
|
__html: `
|
||||||
@@ -1419,7 +1382,6 @@ export default function RootLayout({
|
|||||||
}}
|
}}
|
||||||
/>
|
/>
|
||||||
</body>
|
</body>
|
||||||
</ServiceWrapper>
|
|
||||||
</html>
|
</html>
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -188,8 +188,8 @@ export default function LandingPage() {
|
|||||||
]}
|
]}
|
||||||
showRating={true}
|
showRating={true}
|
||||||
title="What Our Customers Say"
|
title="What Our Customers Say"
|
||||||
description="Join hundreds of satisfied customers who enjoy our premium pastries, fresh coffee, and warm hospitality"
|
description="100+ Five-Star Reviews"
|
||||||
tag="Reviews"
|
tag="Customer Favorites"
|
||||||
textboxLayout="default"
|
textboxLayout="default"
|
||||||
animationType="slide-up"
|
animationType="slide-up"
|
||||||
useInvertedBackground={false}
|
useInvertedBackground={false}
|
||||||
@@ -201,7 +201,13 @@ export default function LandingPage() {
|
|||||||
tag="Visit Us"
|
tag="Visit Us"
|
||||||
tagIcon={MapPin}
|
tagIcon={MapPin}
|
||||||
title="Find Us in Antalya"
|
title="Find Us in Antalya"
|
||||||
description="Ermenek, Rauf Denktaş Cd No:70, 00700 Muratpaşa / Antalya, Turkey\n\nPhone: 0541 348 80 13\nOpen 24 Hours\n\nWheelchair Accessible Entrance\nFree Street Parking Available"
|
description="Ermenek, Rauf Denktaş Cd No:70, 00700 Muratpaşa / Antalya, Turkey
|
||||||
|
|
||||||
|
Phone: 0541 348 80 13
|
||||||
|
Open 24 Hours
|
||||||
|
|
||||||
|
Wheelchair Accessible Entrance
|
||||||
|
Free Street Parking Available"
|
||||||
background={{ variant: "radial-gradient" }}
|
background={{ variant: "radial-gradient" }}
|
||||||
useInvertedBackground={true}
|
useInvertedBackground={true}
|
||||||
inputPlaceholder="Get directions"
|
inputPlaceholder="Get directions"
|
||||||
|
|||||||
Reference in New Issue
Block a user