Merge version_2 into main
Merge version_2 into main
This commit was merged in pull request #4.
This commit is contained in:
@@ -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>
|
||||
);
|
||||
}
|
||||
|
||||
@@ -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" },
|
||||
|
||||
Reference in New Issue
Block a user