Compare commits
3 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
| f003a5cfe1 | |||
| 457d8b3e87 | |||
| 12adfe9685 |
@@ -1,57 +1,27 @@
|
|||||||
import type { Metadata } from "next";
|
import type { Metadata } from "next";
|
||||||
import { Halant } from "next/font/google";
|
import { Geist, Geist_Mono } from "next/font/google";
|
||||||
import { Inter } from "next/font/google";
|
|
||||||
import { Lato } from "next/font/google";
|
|
||||||
import "./globals.css";
|
import "./globals.css";
|
||||||
import { ServiceWrapper } from "@/components/ServiceWrapper";
|
|
||||||
import Tag from "@/tag/Tag";
|
|
||||||
|
|
||||||
const halant = Halant({
|
const geist = Geist({
|
||||||
variable: "--font-halant", subsets: ["latin"],
|
variable: "--font-geist-sans", subsets: ["latin"],
|
||||||
weight: ["300", "400", "500", "600", "700"],
|
|
||||||
});
|
});
|
||||||
|
|
||||||
const inter = Inter({
|
const geistMono = Geist_Mono({
|
||||||
variable: "--font-inter", subsets: ["latin"],
|
variable: "--font-geist-mono", subsets: ["latin"],
|
||||||
});
|
|
||||||
|
|
||||||
const lato = Lato({
|
|
||||||
variable: "--font-lato", subsets: ["latin"],
|
|
||||||
weight: ["100", "300", "400", "700", "900"],
|
|
||||||
});
|
});
|
||||||
|
|
||||||
export const metadata: Metadata = {
|
export const metadata: Metadata = {
|
||||||
title: "Gyros Thessalonikis - Authentic Greek Gyros in Bucharest", description: "Authentic Greek gyros in Bucharest. Fresh, grilled daily with premium ingredients. 4.7★ rated. Order takeaway now. Located at Bulevardul 1 Decembrie 1918.", keywords: "gyros Bucharest, Greek food Bucharest, authentic gyros, Greek restaurant, gyros near me, street food Bucharest, takeaway gyros", metadataBase: new URL("https://gyrosthessalonikis.ro"),
|
title: "Create Next App", description: "Generated by create next app"};
|
||||||
alternates: {
|
|
||||||
canonical: "https://gyrosthessalonikis.ro"},
|
|
||||||
openGraph: {
|
|
||||||
title: "Gyros Thessalonikis - Authentic Greek Gyros in Bucharest", description: "Experience authentic Greek street food. Fresh grilled gyros with premium ingredients. 4.7★ customer rated.", url: "https://gyrosthessalonikis.ro", siteName: "Gyros Thessalonikis", images: [
|
|
||||||
{
|
|
||||||
url: "http://img.b2bpic.net/free-photo/tortilla-wrap-with-falafel-fresh-salad-vegan-tacos-vegetarian-healthy-food-top-view_2829-6197.jpg", alt: "Delicious authentic Greek gyros"},
|
|
||||||
],
|
|
||||||
type: "website"},
|
|
||||||
twitter: {
|
|
||||||
card: "summary_large_image", title: "Gyros Thessalonikis - Authentic Greek Gyros", description: "Fresh grilled gyros made daily. 4.7★ rated by customers. Order your takeaway now!", images: ["http://img.b2bpic.net/free-photo/tortilla-wrap-with-falafel-fresh-salad-vegan-tacos-vegetarian-healthy-food-top-view_2829-6197.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={`${geist.variable} ${geistMono.variable} antialiased`}>
|
||||||
<body
|
{children}
|
||||||
className={`${halant.variable} ${inter.variable} ${lato.variable} antialiased`}
|
|
||||||
>
|
|
||||||
<Tag />
|
|
||||||
{children}
|
|
||||||
|
|
||||||
<script
|
<script
|
||||||
dangerouslySetInnerHTML={{
|
dangerouslySetInnerHTML={{
|
||||||
@@ -1420,7 +1390,6 @@ export default function RootLayout({
|
|||||||
}}
|
}}
|
||||||
/>
|
/>
|
||||||
</body>
|
</body>
|
||||||
</ServiceWrapper>
|
|
||||||
</html>
|
</html>
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -187,8 +187,8 @@ export default function LandingPage() {
|
|||||||
imageSrc="http://img.b2bpic.net/free-photo/woman-taking-finger-flatbread-wrap-from-plate-served-breakfast_140725-7137.jpg"
|
imageSrc="http://img.b2bpic.net/free-photo/woman-taking-finger-flatbread-wrap-from-plate-served-breakfast_140725-7137.jpg"
|
||||||
imageAlt="Gyros Thessalonikis location"
|
imageAlt="Gyros Thessalonikis location"
|
||||||
mediaPosition="right"
|
mediaPosition="right"
|
||||||
inputPlaceholder="Enter your phone number"
|
inputPlaceholder="Enter your phone for WhatsApp order"
|
||||||
buttonText="Call for Order"
|
buttonText="Order via WhatsApp"
|
||||||
termsText="We respect your privacy. Call us anytime for takeaway orders or WhatsApp for quick service."
|
termsText="We respect your privacy. Call us anytime for takeaway orders or WhatsApp for quick service."
|
||||||
onSubmit={() => {}}
|
onSubmit={() => {}}
|
||||||
/>
|
/>
|
||||||
|
|||||||
Reference in New Issue
Block a user