6 Commits

Author SHA1 Message Date
ee203473e7 Merge version_2 into main
Merge version_2 into main
2026-03-06 22:56:52 +00:00
8a1cf17e83 Update src/app/page.tsx 2026-03-06 22:56:47 +00:00
1f7d661c72 Update src/app/layout.tsx 2026-03-06 22:56:47 +00:00
ad96671945 Merge version_1 into main
Merge version_1 into main
2026-03-06 22:33:12 +00:00
ddef528510 Merge version_1 into main
Merge version_1 into main
2026-03-06 22:32:11 +00:00
4aad9f3a4f Merge version_1 into main
Merge version_1 into main
2026-03-06 22:30:46 +00:00
2 changed files with 9 additions and 36 deletions

View File

@@ -1,46 +1,17 @@
import type { Metadata } from "next";
import { Halant } from "next/font/google";
import { Inter } from "next/font/google";
import { Inter_Tight } from "next/font/google";
import "./globals.css";
import { ServiceWrapper } from "@/components/ServiceWrapper";
import Tag from "@/tag/Tag";
const halant = Halant({
variable: "--font-halant", subsets: ["latin"],
weight: ["300", "400", "500", "600", "700"],
});
const inter = Inter({
variable: "--font-inter", subsets: ["latin"],
});
const interTight = Inter_Tight({
variable: "--font-inter-tight", subsets: ["latin"],
weight: ["100", "200", "300", "400", "500", "600", "700", "800", "900"],
});
import "@/styles/globals.css";
export const metadata: Metadata = {
title: "MemeLib - Your Free Meme Library Platform", description: "Discover, upload, and share thousands of trending memes. Organize by vibe, explore trending content, and connect with creators.", keywords: "memes, meme library, meme templates, trending memes, meme platform, content creation", openGraph: {
title: "MemeLib - Your Free Meme Library Platform", description: "Discover and share thousands of trending memes with the creative community.", siteName: "MemeLib", type: "website"},
twitter: {
card: "summary_large_image", title: "MemeLib - Your Free Meme Library Platform", description: "Discover, upload, and share trending memes with creators worldwide."},
};
title: "MemeLib - Your Meme Library", description: "Discover, upload, and share thousands of memes organized by vibe, trending now, or your personal collection"};
export default function RootLayout({
children,
}: Readonly<{
}: {
children: React.ReactNode;
}>) {
}) {
return (
<html lang="en" suppressHydrationWarning>
<ServiceWrapper>
<body
className={`${halant.variable} ${inter.variable} ${interTight.variable} antialiased`}
>
<Tag />
{children}
<html lang="en">
<body>{children}
<script
dangerouslySetInnerHTML={{
__html: `
@@ -1408,7 +1379,6 @@ export default function RootLayout({
}}
/>
</body>
</ServiceWrapper>
</html>
);
}

View File

@@ -191,6 +191,9 @@ export default function LandingPage() {
textPosition="left"
useInvertedBackground={false}
faqsAnimation="blur-reveal"
buttons={[
{ text: "Start Uploading", href: "#upload" }
]}
faqs={[
{
id: "1", title: "Is MemeLib really free?", content: "Yes! MemeLib is completely free to browse, upload, and download memes. We believe in keeping meme culture accessible to everyone."