Compare commits
5 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
| 2237eb6d33 | |||
| f7b7781bfd | |||
| 055354de98 | |||
| 9d00d3bb18 | |||
| a8d1bd3cb2 |
@@ -1,27 +1,58 @@
|
|||||||
import type { Metadata } from "next";
|
import type { Metadata } from "next";
|
||||||
import { Geist, Geist_Mono } from "next/font/google";
|
import { Manrope } from "next/font/google";
|
||||||
|
import { DM_Sans } from "next/font/google";
|
||||||
|
import { Halant } from "next/font/google";
|
||||||
|
import { Inter } from "next/font/google";
|
||||||
import "./globals.css";
|
import "./globals.css";
|
||||||
|
import { ServiceWrapper } from "@/components/ServiceWrapper";
|
||||||
|
import Tag from "@/tag/Tag";
|
||||||
|
|
||||||
const geist = Geist({
|
const manrope = Manrope({
|
||||||
variable: "--font-geist-sans", subsets: ["latin"],
|
variable: "--font-manrope", subsets: ["latin"],
|
||||||
});
|
});
|
||||||
|
|
||||||
const geistMono = Geist_Mono({
|
const dmSans = DM_Sans({
|
||||||
variable: "--font-geist-mono", subsets: ["latin"],
|
variable: "--font-dm-sans", subsets: ["latin"],
|
||||||
|
});
|
||||||
|
|
||||||
|
const halant = Halant({
|
||||||
|
variable: "--font-halant", subsets: ["latin"],
|
||||||
|
weight: ["300", "400", "500", "600", "700"],
|
||||||
|
});
|
||||||
|
|
||||||
|
const inter = Inter({
|
||||||
|
variable: "--font-inter", subsets: ["latin"],
|
||||||
});
|
});
|
||||||
|
|
||||||
export const metadata: Metadata = {
|
export const metadata: Metadata = {
|
||||||
title: "Sun Ravintola", description: "Monipuolinen kiinalainen buffet tuoreilla raaka-aineilla"};
|
title: "Sun Ravintola - Kiinalainen Buffet Mänttä-Vilppulassa", description: "Monipuolinen kiinalainen buffet-ravintola Mänttä-Vilppulassa. Tuoreet raaka-aineet, sushi ja lämpimät ruoat. Varaa pöytä helposti puhelimitse 045 880 0266.", keywords: "kiinalainen ravintola Mänttä-Vilppula, buffet, sushi, ravintola, ruokailu", robots: {
|
||||||
|
index: true,
|
||||||
|
follow: true,
|
||||||
|
},
|
||||||
|
openGraph: {
|
||||||
|
title: "Sun Ravintola - Kiinalainen Buffet", description: "Tervetuloa nauttimaan runsaasta kiinalaisesta buffetista Mänttä-Vilppulassa.", url: "https://sunravintola.fi", siteName: "Sun Ravintola", type: "website", images: [
|
||||||
|
{
|
||||||
|
url: "http://img.b2bpic.net/free-photo/lot-variety-fruits-drinks-served-celebration-table_8353-9832.jpg", alt: "Sun ravintolan buffet"},
|
||||||
|
],
|
||||||
|
},
|
||||||
|
twitter: {
|
||||||
|
card: "summary_large_image", title: "Sun Ravintola - Kiinalainen Buffet", description: "Monipuolinen kiinalainen ravintola Mänttä-Vilppulassa", images: ["http://img.b2bpic.net/free-photo/lot-variety-fruits-drinks-served-celebration-table_8353-9832.jpg"],
|
||||||
|
},
|
||||||
|
};
|
||||||
|
|
||||||
export default function RootLayout({
|
export default function RootLayout({
|
||||||
children,
|
children,
|
||||||
}: {
|
}: Readonly<{
|
||||||
children: React.ReactNode;
|
children: React.ReactNode;
|
||||||
}) {
|
}>) {
|
||||||
return (
|
return (
|
||||||
<html lang="en">
|
<html lang="en" suppressHydrationWarning>
|
||||||
<body className={`${geist.variable} ${geistMono.variable} antialiased`}>
|
<ServiceWrapper>
|
||||||
{children}
|
<body
|
||||||
|
className={`${manrope.variable} ${dmSans.variable} ${halant.variable} ${inter.variable} antialiased`}
|
||||||
|
>
|
||||||
|
<Tag />
|
||||||
|
{children}
|
||||||
|
|
||||||
<script
|
<script
|
||||||
dangerouslySetInnerHTML={{
|
dangerouslySetInnerHTML={{
|
||||||
@@ -1390,6 +1421,7 @@ export default function RootLayout({
|
|||||||
}}
|
}}
|
||||||
/>
|
/>
|
||||||
</body>
|
</body>
|
||||||
|
</ServiceWrapper>
|
||||||
</html>
|
</html>
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -130,13 +130,13 @@ export default function LandingPage() {
|
|||||||
textboxLayout="default"
|
textboxLayout="default"
|
||||||
useInvertedBackground={false}
|
useInvertedBackground={false}
|
||||||
speed={40}
|
speed={40}
|
||||||
showCard={true}
|
showCard={false}
|
||||||
/>
|
/>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
<div id="contact" data-section="contact">
|
<div id="contact" data-section="contact">
|
||||||
<ContactText
|
<ContactText
|
||||||
text="Varaa pöytäsi tänään – soita tai avaa reittiohjeet"
|
text="Tervetuloa nauttimaan Sun ravintolassa! Soita nyt tai käy paikan päällä."
|
||||||
animationType="reveal-blur"
|
animationType="reveal-blur"
|
||||||
buttons={[
|
buttons={[
|
||||||
{ text: "Soita: 045 880 0266", href: "tel:+358458800266" },
|
{ text: "Soita: 045 880 0266", href: "tel:+358458800266" },
|
||||||
|
|||||||
Reference in New Issue
Block a user