diff --git a/src/app/layout.tsx b/src/app/layout.tsx
index 170c284..7ca1e72 100644
--- a/src/app/layout.tsx
+++ b/src/app/layout.tsx
@@ -1,42 +1,21 @@
import type { Metadata } from "next";
-import { Libre_Baskerville } from "next/font/google";
-import { Inter } from "next/font/google";
-import "./globals.css";
-import { ServiceWrapper } from "@/components/ServiceWrapper";
-import Tag from "@/tag/Tag";
-
-const libreBaskerville = Libre_Baskerville({
- variable: "--font-libre-baskerville", subsets: ["latin"],
- weight: ["400", "700"],
-});
-
-const inter = Inter({
- variable: "--font-inter", subsets: ["latin"],
-});
+import { GeistSans } from "geist/font/sans";
+import { GeistMono } from "geist/font/mono";
+import "@/styles/globals.css";
export const metadata: Metadata = {
- title: "LaughClips - Funny Short Videos & Comedy Content", description: "Watch hilarious short videos including school jokes, epic fails, and viral memes. Share laughs with millions on the funniest video platform online.", keywords: "funny videos, short clips, memes, fails, comedy, viral content, laugh", openGraph: {
- title: "LaughClips - Funny Short Videos & Comedy Content", description: "Watch hilarious short videos including school jokes, epic fails, and viral memes.", url: "https://laughclips.com", siteName: "LaughClips", type: "website"},
- robots: {
- index: true,
- follow: true,
- },
-};
+ title: "LaughClips - Funniest Videos Online", description: "Discover hilarious short clips that'll make you laugh out loud. From school jokes to epic fails to trending memes."};
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 054b190..d258dc8 100644
--- a/src/app/page.tsx
+++ b/src/app/page.tsx
@@ -47,23 +47,31 @@ export default function LandingPage() {
background={{ variant: "glowing-orb" }}
leftCarouselItems={[
{
- imageSrc: "http://img.b2bpic.net/free-photo/indoor-shot-astonished-employee-sitting-office-desk_273609-31657.jpg?_wi=1", imageAlt: "Funny school jokes video"},
+ imageSrc: "http://img.b2bpic.net/free-photo/indoor-shot-astonished-employee-sitting-office-desk_273609-31657.jpg?_wi=1", imageAlt: "Funny school jokes video"
+ },
{
- imageSrc: "http://img.b2bpic.net/free-photo/mid-aged-couple-love-home_23-2147986301.jpg?_wi=1", imageAlt: "Epic fails comedy video"},
+ imageSrc: "http://img.b2bpic.net/free-photo/mid-aged-couple-love-home_23-2147986301.jpg?_wi=1", imageAlt: "Epic fails comedy video"
+ },
{
- imageSrc: "http://img.b2bpic.net/free-photo/upset-friends-watching-sports-competition_23-2147771140.jpg?_wi=1", imageAlt: "Trending meme video"},
+ imageSrc: "http://img.b2bpic.net/free-photo/upset-friends-watching-sports-competition_23-2147771140.jpg?_wi=1", imageAlt: "Trending meme video"
+ },
{
- imageSrc: "http://img.b2bpic.net/free-photo/front-view-little-boy-screaming-class_23-2148668607.jpg?_wi=1", imageAlt: "School comedy clips"},
+ imageSrc: "http://img.b2bpic.net/free-photo/front-view-little-boy-screaming-class_23-2148668607.jpg?_wi=1", imageAlt: "School comedy clips"
+ },
]}
rightCarouselItems={[
{
- imageSrc: "http://img.b2bpic.net/free-photo/media-star-hosting-online-show-well-lit-studio-shooting-vlog-using-phone_482257-121734.jpg?_wi=1", imageAlt: "Viral meme content"},
+ imageSrc: "http://img.b2bpic.net/free-photo/media-star-hosting-online-show-well-lit-studio-shooting-vlog-using-phone_482257-121734.jpg?_wi=1", imageAlt: "Viral meme content"
+ },
{
- imageSrc: "http://img.b2bpic.net/free-photo/man-presents-mobile-phone-from-brand-sponsoring-video_482257-124339.jpg?_wi=1", imageAlt: "Hilarious fails compilation"},
+ imageSrc: "http://img.b2bpic.net/free-photo/man-presents-mobile-phone-from-brand-sponsoring-video_482257-124339.jpg?_wi=1", imageAlt: "Hilarious fails compilation"
+ },
{
- imageSrc: "http://img.b2bpic.net/free-photo/medium-shot-excited-blogger-with-elastics_23-2148544262.jpg?_wi=1", imageAlt: "Funny school moments"},
+ imageSrc: "http://img.b2bpic.net/free-photo/medium-shot-excited-blogger-with-elastics_23-2148544262.jpg?_wi=1", imageAlt: "Funny school moments"
+ },
{
- imageSrc: "http://img.b2bpic.net/free-photo/lifestyle-couple-date-night_23-2149131770.jpg?_wi=1", imageAlt: "Comedy meme clips"},
+ imageSrc: "http://img.b2bpic.net/free-photo/lifestyle-couple-date-night_23-2149131770.jpg?_wi=1", imageAlt: "Comedy meme clips"
+ },
]}
buttons={[
{ text: "Start Watching", href: "#browse" },
@@ -77,7 +85,7 @@ export default function LandingPage() {