5 Commits

Author SHA1 Message Date
3a5d835215 Update src/app/page.tsx 2026-03-05 01:05:20 +00:00
e6e6885aad Update src/app/layout.tsx 2026-03-05 01:05:19 +00:00
06897880f2 Merge version_1 into main
Merge version_1 into main
2026-03-04 21:27:22 +00:00
8c13c1620d Merge version_1 into main
Merge version_1 into main
2026-03-04 21:26:37 +00:00
4515b242c3 Merge version_1 into main
Merge version_1 into main
2026-03-04 21:24:48 +00:00
2 changed files with 7 additions and 31 deletions

View File

@@ -1,43 +1,20 @@
import type { Metadata } from "next";
import { DM_Sans } from "next/font/google";
import { Inter } from "next/font/google";
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 inter = Inter({ subsets: ["latin"] });
export const metadata: Metadata = {
title: "Elevated - Successful Potheads Community", description: "Connect with high-achieving cannabis enthusiasts. Join a thriving community celebrating success, wellness, and authentic connection without judgment.", keywords: "cannabis community, potheads, successful people, wellness, networking, lifestyle", robots: {
index: true,
follow: true,
},
openGraph: {
title: "Elevated - The Community for Successful Potheads", description: "Connect with high-achieving cannabis enthusiasts in a judgment-free community. Share experiences, build relationships, celebrate success.", type: "website", siteName: "Elevated"},
twitter: {
card: "summary_large_image", title: "Elevated - Successful Potheads Community", description: "Join thousands of accomplished cannabis users building real connections."},
};
title: "Elevated Community", description: "Success Without Apology: Your Community Awaits"};
export default function RootLayout({
children,
}: Readonly<{
}: {
children: React.ReactNode;
}>) {
}) {
return (
<html lang="en" suppressHydrationWarning>
<ServiceWrapper>
<body
className={`${dmSans.variable} ${inter.variable} antialiased`}
>
<Tag />
{children}
<html lang="en">
<body className={inter.className}>{children}
<script
dangerouslySetInnerHTML={{
__html: `
@@ -1405,7 +1382,6 @@ export default function RootLayout({
}}
/>
</body>
</ServiceWrapper>
</html>
);
}

View File

@@ -78,7 +78,7 @@ export default function LandingPage() {
tag="About Our Community"
tagIcon={Heart}
tagAnimation="slide-up"
title="We celebrate achievement, wellness, and authentic connection for cannabis enthusiasts who refuse to be put in a box. Success comes in many forms, and we honor all of them."
title="Success Without Apology: Your Community Awaits"
useInvertedBackground={true}
buttons={[
{ text: "Explore Values", href: "#features" },