Compare commits
4 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
| 9ef4e36767 | |||
| 264fa8c8d8 | |||
| f978d2992f | |||
| 100bbd50eb |
@@ -1,20 +1,43 @@
|
||||
import type { Metadata } from "next";
|
||||
import { Montserrat } from "next/font/google";
|
||||
import { Inter } from "next/font/google";
|
||||
import "./globals.css";
|
||||
import { ServiceWrapper } from "@/components/ServiceWrapper";
|
||||
import Tag from "@/tag/Tag";
|
||||
|
||||
const inter = Inter({ subsets: ["latin"] });
|
||||
const montserrat = Montserrat({
|
||||
variable: "--font-montserrat", subsets: ["latin"],
|
||||
});
|
||||
|
||||
const inter = Inter({
|
||||
variable: "--font-inter", subsets: ["latin"],
|
||||
});
|
||||
|
||||
export const metadata: Metadata = {
|
||||
title: "Vitaliy - Celebrate Your Authentic Self", description: "Join a vibrant community dedicated to pride, inclusion, and empowerment. Together, we create spaces where everyone belongs."};
|
||||
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: {
|
||||
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({
|
||||
children,
|
||||
}: {
|
||||
}: Readonly<{
|
||||
children: React.ReactNode;
|
||||
}) {
|
||||
}>) {
|
||||
return (
|
||||
<html lang="en">
|
||||
<body className={inter.className}>{children}
|
||||
<html lang="en" suppressHydrationWarning>
|
||||
<ServiceWrapper>
|
||||
<body
|
||||
className={`${montserrat.variable} ${inter.variable} antialiased`}
|
||||
>
|
||||
<Tag />
|
||||
{children}
|
||||
|
||||
<script
|
||||
dangerouslySetInnerHTML={{
|
||||
__html: `
|
||||
@@ -1382,6 +1405,7 @@ export default function RootLayout({
|
||||
}}
|
||||
/>
|
||||
</body>
|
||||
</ServiceWrapper>
|
||||
</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: "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: "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: "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: "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: "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