Merge version_2 into main

Merge version_2 into main
This commit was merged in pull request #7.
This commit is contained in:
2026-03-04 10:04:32 +00:00
2 changed files with 10 additions and 34 deletions

View File

@@ -1,43 +1,20 @@
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 montserrat = Montserrat({
variable: "--font-montserrat", subsets: ["latin"],
});
const inter = Inter({
variable: "--font-inter", subsets: ["latin"],
});
const inter = Inter({ subsets: ["latin"] });
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: {
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."},
};
title: "Vitaliy - Celebrate Your Authentic Self", description: "Join a vibrant community dedicated to pride, inclusion, and empowerment. Together, we create spaces where everyone belongs."};
export default function RootLayout({
children,
}: Readonly<{
}: {
children: React.ReactNode;
}>) {
}) {
return (
<html lang="en" suppressHydrationWarning>
<ServiceWrapper>
<body
className={`${montserrat.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

@@ -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: "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."
@@ -253,4 +253,4 @@ export default function LandingPage() {
</div>
</ThemeProvider>
);
}
}