diff --git a/src/app/layout.tsx b/src/app/layout.tsx
index 48330be..e46260c 100644
--- a/src/app/layout.tsx
+++ b/src/app/layout.tsx
@@ -1,51 +1,25 @@
import type { Metadata } from "next";
-import { DM_Sans } from "next/font/google";
-import { Inter } from "next/font/google";
+import localFont from "next/font/local";
import "./globals.css";
-import { ServiceWrapper } from "@/components/ServiceWrapper";
-import Tag from "@/tag/Tag";
-const dmSans = DM_Sans({
- variable: "--font-dm-sans", subsets: ["latin"],
-});
-
-const inter = Inter({
- variable: "--font-inter", subsets: ["latin"],
-});
+const geistSans = localFont({
+ src: "./fonts/GeistVF.woff2", variable: "--font-geist-sans", weight: "100 900"});
+const geistMono = localFont({
+ src: "./fonts/GeistMonoVF.woff2", variable: "--font-geist-mono", weight: "100 900"});
export const metadata: Metadata = {
- title: "kyFaLL Veenendaal | Loungebar Shisha", description: "Dé loungebar van Veenendaal. Premium shisha, gezellige sfeer, eerlijke prijzen. Geopend tot 02:00. Reserveer nu of bel 06 87271224.", keywords: "loungebar Veenendaal, shisha bar, waterpijp, lounge, bar restaurant", metadataBase: new URL("https://kyfall-veenendaal.nl"),
- alternates: {
- canonical: "https://kyfall-veenendaal.nl"},
- openGraph: {
- title: "kyFaLL Veenendaal - Dé Loungebar van Veenendaal", description: "Premium loungebar met kwaliteit shisha, gezellige sfeer en eerlijke prijzen. Reserveer je tafel nu.", url: "https://kyfall-veenendaal.nl", siteName: "kyFaLL Veenendaal", type: "website", images: [
- {
- url: "http://img.b2bpic.net/free-photo/black-wooden-table_417767-153.jpg", alt: "kyFaLL Loungebar Veenendaal"},
- ],
- },
- twitter: {
- card: "summary_large_image", title: "kyFaLL Veenendaal - Premium Loungebar", description: "Goede vibe, top shisha, eerlijke prijzen. ★ 4,7 uit 89 reviews", images: ["http://img.b2bpic.net/free-photo/black-wooden-table_417767-153.jpg"],
- },
- robots: {
- index: true,
- follow: true,
- },
-};
+ title: "kyFaLL - Dé Loungebar van Veenendaal", description: "Premium loungebar in het hartje centrum van Veenendaal. Goede vibe, top shisha, eerlijke prijzen. Geopend tot 02:00 uur."};
export default function RootLayout({
children,
-}: Readonly<{
+}: {
children: React.ReactNode;
-}>) {
+}) {
return (
-
-
-
-
- {children}
-
+
+
+ {children}
+
-
);
}
diff --git a/src/app/page.tsx b/src/app/page.tsx
index 5fb84d3..718a97f 100644
--- a/src/app/page.tsx
+++ b/src/app/page.tsx
@@ -56,22 +56,22 @@ export default function LandingPage() {
buttonAnimation="slide-up"
carouselItems={[
{
- id: "1", imageSrc: "http://img.b2bpic.net/free-photo/black-wooden-table_417767-153.jpg?_wi=1", imageAlt: "kyFaLL Loungebar Veenendaal"
+ id: "1", imageSrc: "https://images.unsplash.com/photo-1514991643075-82c3f4e65d80?w=800&h=600&fit=crop", imageAlt: "kyFaLL Loungebar Veenendaal - Modern lounge interior"
},
{
- id: "2", imageSrc: "http://img.b2bpic.net/free-photo/group-handsome-retro-welldressed-man-gangsters-spend-time-club-smoking-hookah-multiethnic-male-bachelor-mafia-party-restaurant_627829-12017.jpg?_wi=1", imageAlt: "Premium Shisha Setup"
+ id: "2", imageSrc: "https://images.unsplash.com/photo-1470225620780-dba8ba36b745?w=800&h=600&fit=crop", imageAlt: "Premium Shisha Setup"
},
{
- id: "3", imageSrc: "http://img.b2bpic.net/free-photo/black-wooden-table_417767-153.jpg?_wi=2", imageAlt: "Modern Lounge Interior"
+ id: "3", imageSrc: "https://images.unsplash.com/photo-1554118811-1e0d58224f24?w=800&h=600&fit=crop", imageAlt: "Modern Lounge Interior"
},
{
- id: "4", imageSrc: "http://img.b2bpic.net/free-photo/craft-beer-booze-brew-alcohol-celebrate-refreshment_53876-46913.jpg?_wi=1", imageAlt: "Social Gathering Space"
+ id: "4", imageSrc: "https://images.unsplash.com/photo-1608270861620-7c38b2a5eae6?w=800&h=600&fit=crop", imageAlt: "Social Gathering Space"
},
{
- id: "5", imageSrc: "http://img.b2bpic.net/free-photo/confident-young-indian-man-black-shirt-standing-cafe_627829-5462.jpg?_wi=1", imageAlt: "Evening Ambiance"
+ id: "5", imageSrc: "https://images.unsplash.com/photo-1510812431401-41d2cab2707d?w=800&h=600&fit=crop", imageAlt: "Evening Ambiance"
},
{
- id: "6", imageSrc: "http://img.b2bpic.net/free-photo/group-handsome-retro-welldressed-man-gangsters-spend-time-club-smoking-hookah-multiethnic-male-bachelor-mafia-party-restaurant_627829-12017.jpg?_wi=2", imageAlt: "Shisha Experience"
+ id: "6", imageSrc: "https://images.unsplash.com/photo-1470225620780-dba8ba36b745?w=800&h=600&fit=crop", imageAlt: "Shisha Experience"
},
]}
autoPlay={true}
@@ -84,7 +84,7 @@ export default function LandingPage() {