Compare commits
5 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
| 3a5d835215 | |||
| e6e6885aad | |||
| 06897880f2 | |||
| 8c13c1620d | |||
| 4515b242c3 |
@@ -1,43 +1,20 @@
|
|||||||
import type { Metadata } from "next";
|
import type { Metadata } from "next";
|
||||||
import { DM_Sans } from "next/font/google";
|
|
||||||
import { Inter } 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 dmSans = DM_Sans({
|
const inter = Inter({ subsets: ["latin"] });
|
||||||
variable: "--font-dm-sans", subsets: ["latin"],
|
|
||||||
});
|
|
||||||
|
|
||||||
const inter = Inter({
|
|
||||||
variable: "--font-inter", subsets: ["latin"],
|
|
||||||
});
|
|
||||||
|
|
||||||
export const metadata: Metadata = {
|
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: {
|
title: "Elevated Community", description: "Success Without Apology: Your Community Awaits"};
|
||||||
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."},
|
|
||||||
};
|
|
||||||
|
|
||||||
export default function RootLayout({
|
export default function RootLayout({
|
||||||
children,
|
children,
|
||||||
}: Readonly<{
|
}: {
|
||||||
children: React.ReactNode;
|
children: React.ReactNode;
|
||||||
}>) {
|
}) {
|
||||||
return (
|
return (
|
||||||
<html lang="en" suppressHydrationWarning>
|
<html lang="en">
|
||||||
<ServiceWrapper>
|
<body className={inter.className}>{children}
|
||||||
<body
|
|
||||||
className={`${dmSans.variable} ${inter.variable} antialiased`}
|
|
||||||
>
|
|
||||||
<Tag />
|
|
||||||
{children}
|
|
||||||
|
|
||||||
<script
|
<script
|
||||||
dangerouslySetInnerHTML={{
|
dangerouslySetInnerHTML={{
|
||||||
__html: `
|
__html: `
|
||||||
@@ -1405,7 +1382,6 @@ export default function RootLayout({
|
|||||||
}}
|
}}
|
||||||
/>
|
/>
|
||||||
</body>
|
</body>
|
||||||
</ServiceWrapper>
|
|
||||||
</html>
|
</html>
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -78,7 +78,7 @@ export default function LandingPage() {
|
|||||||
tag="About Our Community"
|
tag="About Our Community"
|
||||||
tagIcon={Heart}
|
tagIcon={Heart}
|
||||||
tagAnimation="slide-up"
|
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}
|
useInvertedBackground={true}
|
||||||
buttons={[
|
buttons={[
|
||||||
{ text: "Explore Values", href: "#features" },
|
{ text: "Explore Values", href: "#features" },
|
||||||
|
|||||||
Reference in New Issue
Block a user