Compare commits
9 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
| 9e2351a2d5 | |||
| d0f4cd23b7 | |||
| ec35dad80f | |||
| dc086ff444 | |||
| 56fa1c350e | |||
| 8c117839b2 | |||
| c685b022cd | |||
| d6462184bc | |||
| e920149448 |
@@ -1,43 +1,20 @@
|
|||||||
import type { Metadata } from "next";
|
import type { Metadata } from "next";
|
||||||
import { Montserrat } 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 montserrat = Montserrat({
|
const inter = Inter({ subsets: ["latin"] });
|
||||||
variable: "--font-montserrat", subsets: ["latin"],
|
|
||||||
});
|
|
||||||
|
|
||||||
const inter = Inter({
|
|
||||||
variable: "--font-inter", subsets: ["latin"],
|
|
||||||
});
|
|
||||||
|
|
||||||
export const metadata: Metadata = {
|
export const metadata: Metadata = {
|
||||||
title: "Vitaliy - Celebrate Your Authentic Self", description: "Join a vibrant LGBTQ+ community dedicated to pride, inclusion, and empowerment. Connect, grow, and celebrate with thousands of like-minded individuals.", keywords: "LGBTQ+, pride, community, inclusion, support, networking, events", robots: {
|
title: "Vitaliy - Celebrate Your Authentic Self", description: "Join a vibrant community dedicated to pride, inclusion, and empowerment. Together, we create spaces where everyone belongs."};
|
||||||
index: true,
|
|
||||||
follow: true,
|
|
||||||
},
|
|
||||||
openGraph: {
|
|
||||||
title: "Vitaliy - LGBTQ+ Community Platform", description: "Create safe spaces for authentic self-expression, connection, and growth.", siteName: "Vitaliy", type: "website"},
|
|
||||||
twitter: {
|
|
||||||
card: "summary_large_image", title: "Vitaliy - Celebrate Your Authentic Self", description: "Join the vibrant LGBTQ+ community dedicated to pride and empowerment."},
|
|
||||||
};
|
|
||||||
|
|
||||||
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={`${montserrat.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>
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -195,10 +195,10 @@ export default function LandingPage() {
|
|||||||
id: "1", title: "Is Vitaliy only for LGBTQ+ individuals?", content: "While Vitaliy is primarily designed for LGBTQ+ community members, allies and supportive individuals are absolutely welcome. We celebrate everyone who respects our values of inclusion and equality."
|
id: "1", title: "Is Vitaliy only for LGBTQ+ individuals?", content: "While Vitaliy is primarily designed for LGBTQ+ community members, allies and supportive individuals are absolutely welcome. We celebrate everyone who respects our values of inclusion and equality."
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
id: "2", title: "How do I join the community?", content: "Joining is simple! Visit our signup page, create your profile, and start connecting. You can customize your privacy settings to control what you share and who you interact with."
|
id: "2", title: "What safety measures are in place?", content: "Your safety and trust are our top priority. We employ a dedicated moderation team that monitors community interactions 24/7 with average response times under 2 hours for reported violations. Our comprehensive safety measures include: Real-time content filtering to prevent harassment and hate speech; Verified member profiles to maintain community integrity; Customizable privacy controls so you decide what's visible; One-click reporting system for any concerning behavior; Zero-tolerance policy with immediate account suspension for violations; Encrypted messaging for private conversations; Regular safety audits and community guidelines updates; Direct support channel for members feeling unsafe. All reports are taken seriously and investigated promptly."
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
id: "3", title: "What safety measures are in place?", content: "Your safety is our priority. We have comprehensive community guidelines, moderation teams, and privacy controls. All members agree to respect boundaries and treat each other with dignity."
|
id: "3", title: "How do I join the community?", content: "Joining is simple! Visit our signup page, create your profile, and start connecting. You can customize your privacy settings to control what you share and who you interact with."
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
id: "4", title: "Are there events I can attend?", content: "Yes! We organize virtual and in-person events throughout the year including pride celebrations, networking mixers, workshops, and social gatherings in various locations."
|
id: "4", title: "Are there events I can attend?", content: "Yes! We organize virtual and in-person events throughout the year including pride celebrations, networking mixers, workshops, and social gatherings in various locations."
|
||||||
|
|||||||
Reference in New Issue
Block a user