Compare commits
23 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
| ceeea0a2d4 | |||
| 2b1e0a9867 | |||
| bde437f5b9 | |||
| 4aa6b91d5c | |||
| 2da4e60f40 | |||
| ca626149f0 | |||
| fb624a3a17 | |||
| 158f9bbf7a | |||
| e80995a5d9 | |||
| 27552304a3 | |||
| 7cbdc542b7 | |||
| 92c02c8d29 | |||
| ad3ab30805 | |||
| 4b795cdbf0 | |||
| 61e213f4bc | |||
| 14e704ed97 | |||
| f4c0fa00a5 | |||
| 5e677c832c | |||
| e2bfb36eb3 | |||
| f1acd66ead | |||
| bfc5fa822e | |||
| 989487b18a | |||
| 4d811a451b |
@@ -1,18 +1,40 @@
|
||||
"use client";
|
||||
|
||||
import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
|
||||
import NavbarStyleFullscreen from "@/components/navbar/NavbarStyleFullscreen/NavbarStyleFullscreen";
|
||||
import ContactForm from "@/components/form/ContactForm";
|
||||
import FooterBaseReveal from "@/components/sections/footer/FooterBaseReveal";
|
||||
import { Mail, MessageSquare } from "lucide-react";
|
||||
import NavbarStyleApple from "@/components/navbar/NavbarStyleApple/NavbarStyleApple";
|
||||
import { useState } from "react";
|
||||
|
||||
interface Project {
|
||||
id: string;
|
||||
title: string;
|
||||
description: string;
|
||||
image: string;
|
||||
}
|
||||
|
||||
const projects: Project[] = [
|
||||
{
|
||||
id: "1", title: "Brand Identity", description: "Complete visual identity system with logo, colors, and typography guidelines", image: "/placeholders/placeholder1.jpg"},
|
||||
{
|
||||
id: "2", title: "Website Redesign", description: "Modern responsive website with improved user experience and conversion rates", image: "/placeholders/placeholder2.jpg"},
|
||||
{
|
||||
id: "3", title: "Marketing Campaign", description: "Integrated digital marketing strategy across social media and email channels", image: "/placeholders/placeholder3.jpg"},
|
||||
{
|
||||
id: "4", title: "Product Launch", description: "End-to-end product launch campaign with positioning and messaging strategy", image: "/placeholders/placeholder4.jpg"},
|
||||
{
|
||||
id: "5", title: "UI Design System", description: "Comprehensive design system with components, patterns, and documentation", image: "/placeholders/placeholder5.jpg"},
|
||||
{
|
||||
id: "6", title: "Social Media Strategy", description: "Content strategy and calendar for consistent brand presence across platforms", image: "/placeholders/placeholder6.jpg"},
|
||||
];
|
||||
|
||||
export default function ContactPage() {
|
||||
const [hoveredId, setHoveredId] = useState<string | null>(null);
|
||||
|
||||
return (
|
||||
<ThemeProvider
|
||||
defaultButtonVariant="hover-magnetic"
|
||||
defaultTextAnimation="entrance-slide"
|
||||
borderRadius="rounded"
|
||||
contentWidth="mediumLarge"
|
||||
contentWidth="medium"
|
||||
sizing="medium"
|
||||
background="none"
|
||||
cardStyle="solid"
|
||||
@@ -20,88 +42,60 @@ export default function ContactPage() {
|
||||
secondaryButtonStyle="glass"
|
||||
headingFontWeight="bold"
|
||||
>
|
||||
<NavbarStyleFullscreen
|
||||
navItems={[
|
||||
{ name: "Home", id: "/" },
|
||||
{ name: "About", id: "#about" },
|
||||
{ name: "Services", id: "#services" },
|
||||
{ name: "Contact", id: "/contact" },
|
||||
{ name: "Pricing", id: "#pricing" },
|
||||
]}
|
||||
brandName="Vortex"
|
||||
bottomLeftText="Global Community"
|
||||
bottomRightText="hello@vortex.com"
|
||||
/>
|
||||
<div id="nav" data-section="nav">
|
||||
<NavbarStyleApple
|
||||
navItems={[
|
||||
{ name: "Home", id: "/" },
|
||||
{ name: "Contact", id: "/contact" },
|
||||
]}
|
||||
brandName="Vortex"
|
||||
/>
|
||||
</div>
|
||||
|
||||
<div className="min-h-screen pt-32 pb-20 px-4 flex flex-col items-center justify-center">
|
||||
<div className="w-full max-w-2xl">
|
||||
<h1 className="text-5xl md:text-6xl font-bold text-center mb-4">Get in Touch</h1>
|
||||
<p className="text-lg text-center text-foreground/70 mb-12">
|
||||
Have a project in mind? We'd love to hear about it. Fill out the form below and we'll get back to you as soon as possible.
|
||||
</p>
|
||||
|
||||
<div id="contact-form" data-section="contact-form" className="mb-16">
|
||||
<ContactForm
|
||||
title="Send us a message"
|
||||
description="Tell us about your project and let's create something amazing together."
|
||||
tag="Contact Us"
|
||||
tagIcon={Mail}
|
||||
inputPlaceholder="Enter your email"
|
||||
buttonText="Send Message"
|
||||
termsText="We respect your privacy. We'll only use this information to discuss your project."
|
||||
centered={true}
|
||||
useInvertedBackground={false}
|
||||
onSubmit={(email) => {
|
||||
console.log("Form submitted with email:", email);
|
||||
}}
|
||||
/>
|
||||
<div id="contact" data-section="contact" className="min-h-screen bg-background py-20 px-4">
|
||||
<div className="max-w-7xl mx-auto">
|
||||
<div className="mb-16">
|
||||
<h1 className="text-4xl md:text-5xl font-bold mb-4 text-foreground">Our Work</h1>
|
||||
<p className="text-lg text-foreground/70">Explore our portfolio of projects and mockups</p>
|
||||
</div>
|
||||
|
||||
<div className="grid md:grid-cols-2 gap-8 mb-16">
|
||||
<div className="text-center">
|
||||
<div className="flex justify-center mb-4">
|
||||
<Mail className="w-12 h-12 text-primary-cta" />
|
||||
<div className="grid grid-cols-1 md:grid-cols-2 lg:grid-cols-3 gap-6">
|
||||
{projects.map((project) => (
|
||||
<div
|
||||
key={project.id}
|
||||
className="group cursor-pointer overflow-hidden rounded-lg"
|
||||
onMouseEnter={() => setHoveredId(project.id)}
|
||||
onMouseLeave={() => setHoveredId(null)}
|
||||
>
|
||||
{/* Image container */}
|
||||
<div className="relative h-64 md:h-72 overflow-hidden rounded-lg bg-card">
|
||||
<img
|
||||
src={project.image}
|
||||
alt={project.title}
|
||||
className="w-full h-full object-cover group-hover:scale-105 transition-transform duration-300"
|
||||
/>
|
||||
{/* Overlay on hover */}
|
||||
<div
|
||||
className={`absolute inset-0 bg-background/90 flex items-center justify-center rounded-lg transition-opacity duration-300 ${
|
||||
hoveredId === project.id ? "opacity-100" : "opacity-0"
|
||||
}`}
|
||||
>
|
||||
<div className="text-center px-4">
|
||||
<p className="text-foreground text-sm leading-relaxed">{project.description}</p>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
{/* Title underneath */}
|
||||
<div className="mt-4">
|
||||
<h3 className="text-lg font-semibold text-foreground">{project.title}</h3>
|
||||
<p className="text-sm text-foreground/60 mt-1">{project.description}</p>
|
||||
</div>
|
||||
</div>
|
||||
<h3 className="text-xl font-semibold mb-2">Email</h3>
|
||||
<p className="text-foreground/70">hello@vortex.com</p>
|
||||
</div>
|
||||
<div className="text-center">
|
||||
<div className="flex justify-center mb-4">
|
||||
<MessageSquare className="w-12 h-12 text-primary-cta" />
|
||||
</div>
|
||||
<h3 className="text-xl font-semibold mb-2">Chat</h3>
|
||||
<p className="text-foreground/70">Available on weekdays 9am-5pm EST</p>
|
||||
</div>
|
||||
))}
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<FooterBaseReveal
|
||||
columns={[
|
||||
{
|
||||
title: "Product", items: [
|
||||
{ label: "Features", href: "#services" },
|
||||
{ label: "Pricing", href: "#pricing" },
|
||||
{ label: "Testimonials", href: "#testimonials" },
|
||||
],
|
||||
},
|
||||
{
|
||||
title: "Company", items: [
|
||||
{ label: "About", href: "#about" },
|
||||
{ label: "Blog", href: "#" },
|
||||
{ label: "Careers", href: "#" },
|
||||
],
|
||||
},
|
||||
{
|
||||
title: "Legal", items: [
|
||||
{ label: "Privacy", href: "#" },
|
||||
{ label: "Terms", href: "#" },
|
||||
{ label: "Contact", href: "/contact" },
|
||||
],
|
||||
},
|
||||
]}
|
||||
copyrightText="© 2025 Vortex Web Studio. All rights reserved."
|
||||
/>
|
||||
</ThemeProvider>
|
||||
);
|
||||
}
|
||||
|
||||
@@ -1,12 +1,8 @@
|
||||
import type { Metadata } from "next";
|
||||
import { Inter } from "next/font/google";
|
||||
import "./globals.css";
|
||||
|
||||
const inter = Inter({ subsets: ["latin"] });
|
||||
import "./styles/globals.css";
|
||||
|
||||
export const metadata: Metadata = {
|
||||
title: "Vortex Web - Design & Marketing Studio", description: "Innovative design and marketing solutions for modern brands"
|
||||
};
|
||||
title: "Vortex", description: "Innovative design and marketing solutions for modern brands"};
|
||||
|
||||
export default function RootLayout({
|
||||
children,
|
||||
@@ -14,21 +10,8 @@ export default function RootLayout({
|
||||
children: React.ReactNode;
|
||||
}) {
|
||||
return (
|
||||
<html lang="en" suppressHydrationWarning>
|
||||
<body className={inter.className}>
|
||||
{children}
|
||||
<script
|
||||
dangerouslySetInnerHTML={{
|
||||
__html: `
|
||||
if (localStorage.getItem('theme') === 'dark' || (!('theme' in localStorage) && window.matchMedia('(prefers-color-scheme: dark)').matches)) {
|
||||
document.documentElement.classList.add('dark')
|
||||
} else {
|
||||
document.documentElement.classList.remove('dark')
|
||||
}
|
||||
`,
|
||||
}}
|
||||
/>
|
||||
|
||||
<html lang="en">
|
||||
<body>{children}
|
||||
<script
|
||||
dangerouslySetInnerHTML={{
|
||||
__html: `
|
||||
|
||||
252
src/app/page.tsx
252
src/app/page.tsx
@@ -1,16 +1,8 @@
|
||||
"use client";
|
||||
|
||||
import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
|
||||
import NavbarStyleFullscreen from "@/components/navbar/NavbarStyleFullscreen/NavbarStyleFullscreen";
|
||||
import HeroLogoBillboard from "@/components/sections/hero/HeroLogoBillboard";
|
||||
import SplitAbout from "@/components/sections/about/SplitAbout";
|
||||
import FeatureCardTwentyFive from "@/components/sections/feature/FeatureCardTwentyFive";
|
||||
import PricingCardThree from "@/components/sections/pricing/PricingCardThree";
|
||||
import TestimonialCardTen from "@/components/sections/testimonial/TestimonialCardTen";
|
||||
import FaqSplitText from "@/components/sections/faq/FaqSplitText";
|
||||
import ContactText from "@/components/sections/contact/ContactText";
|
||||
import FooterBaseReveal from "@/components/sections/footer/FooterBaseReveal";
|
||||
import { Sparkles, Target, Zap, Award, MessageSquare, HelpCircle } from "lucide-react";
|
||||
import NavbarStyleApple from "@/components/navbar/NavbarStyleApple/NavbarStyleApple";
|
||||
import HeroLogo from "@/components/sections/hero/HeroLogo";
|
||||
|
||||
export default function Home() {
|
||||
return (
|
||||
@@ -18,7 +10,7 @@ export default function Home() {
|
||||
defaultButtonVariant="hover-magnetic"
|
||||
defaultTextAnimation="entrance-slide"
|
||||
borderRadius="rounded"
|
||||
contentWidth="mediumLarge"
|
||||
contentWidth="medium"
|
||||
sizing="medium"
|
||||
background="none"
|
||||
cardStyle="solid"
|
||||
@@ -26,233 +18,27 @@ export default function Home() {
|
||||
secondaryButtonStyle="glass"
|
||||
headingFontWeight="bold"
|
||||
>
|
||||
<NavbarStyleFullscreen
|
||||
navItems={[
|
||||
{ name: "Home", id: "/" },
|
||||
{ name: "About", id: "#about" },
|
||||
{ name: "Services", id: "#services" },
|
||||
{ name: "Contact", id: "/contact" },
|
||||
{ name: "Pricing", id: "#pricing" },
|
||||
]}
|
||||
brandName="Vortex"
|
||||
bottomLeftText="Global Community"
|
||||
bottomRightText="hello@vortex.com"
|
||||
/>
|
||||
|
||||
<div id="nav" data-section="nav">
|
||||
<NavbarStyleApple
|
||||
navItems={[
|
||||
{ name: "Home", id: "/" },
|
||||
{ name: "Contact", id: "/contact" },
|
||||
]}
|
||||
brandName="Vortex"
|
||||
/>
|
||||
</div>
|
||||
<div id="hero" data-section="hero">
|
||||
<HeroLogoBillboard
|
||||
logoText="vortex"
|
||||
description="We help driven founders build the brands of tomorrow through websites, product design & branding."
|
||||
<HeroLogo
|
||||
logoText="Vortex"
|
||||
description="Innovative design and marketing solutions for modern brands"
|
||||
buttons={[
|
||||
{ text: "Get Started", href: "/contact" },
|
||||
{ text: "Learn More", href: "#about" },
|
||||
{ text: "Get Started", href: "https://github.com" },
|
||||
{ text: "Learn More", href: "/contact" },
|
||||
]}
|
||||
background={{ variant: "sparkles-gradient" }}
|
||||
imageSrc="https://images.unsplash.com/photo-1633356122544-f134ef2944f5?w=1200&h=600&fit=crop"
|
||||
imageAlt="Hero showcase"
|
||||
frameStyle="card"
|
||||
mediaAnimation="slide-up"
|
||||
buttonAnimation="slide-up"
|
||||
imageSrc="/placeholders/placeholder5.jpg"
|
||||
imageAlt="Hero background"
|
||||
/>
|
||||
</div>
|
||||
|
||||
<div id="about" data-section="about">
|
||||
<SplitAbout
|
||||
title="About Our Studio"
|
||||
description="We combine creativity with strategy to deliver exceptional results for our clients."
|
||||
tag="Our Story"
|
||||
tagIcon={Sparkles}
|
||||
tagAnimation="slide-up"
|
||||
textboxLayout="default"
|
||||
useInvertedBackground={false}
|
||||
bulletPoints={[
|
||||
{
|
||||
title: "Innovation First", description: "We push boundaries and challenge conventions", icon: Zap,
|
||||
},
|
||||
{
|
||||
title: "Quality Design", description: "Excellence in every detail of our work", icon: Award,
|
||||
},
|
||||
{
|
||||
title: "Strategic Thinking", description: "Data-driven decisions for maximum impact", icon: Target,
|
||||
},
|
||||
]}
|
||||
imageSrc="https://images.unsplash.com/photo-1552664730-d307ca884978?w=600&h=700&fit=crop"
|
||||
imageAlt="About us"
|
||||
mediaAnimation="slide-up"
|
||||
imagePosition="right"
|
||||
buttons={[
|
||||
{ text: "Explore Our Work", href: "#services" },
|
||||
{ text: "Get in Touch", href: "/contact" },
|
||||
]}
|
||||
buttonAnimation="slide-up"
|
||||
/>
|
||||
</div>
|
||||
|
||||
<div id="services" data-section="services">
|
||||
<FeatureCardTwentyFive
|
||||
features={[
|
||||
{
|
||||
title: "Brand Strategy", description: "Crafting compelling brand identities that resonate with your audience", icon: Target,
|
||||
mediaItems: [
|
||||
{
|
||||
imageSrc: "https://images.unsplash.com/photo-1561070791-2526d30994b5?w=400&h=300&fit=crop", imageAlt: "Brand strategy"},
|
||||
{
|
||||
imageSrc: "https://images.unsplash.com/photo-1599643478518-a784e5dc4c8f?w=400&h=300&fit=crop", imageAlt: "Brand identity"},
|
||||
],
|
||||
},
|
||||
{
|
||||
title: "Web Design", description: "Beautiful, responsive websites that convert visitors into customers", icon: Zap,
|
||||
mediaItems: [
|
||||
{
|
||||
imageSrc: "https://images.unsplash.com/photo-1561070791-2526d30994b5?w=400&h=300&fit=crop", imageAlt: "Web design"},
|
||||
{
|
||||
imageSrc: "https://images.unsplash.com/photo-1517694712202-14dd9538aa97?w=400&h=300&fit=crop", imageAlt: "UI design"},
|
||||
],
|
||||
},
|
||||
{
|
||||
title: "Marketing", description: "Strategic marketing solutions to grow your business and reach", icon: Award,
|
||||
mediaItems: [
|
||||
{
|
||||
imageSrc: "https://images.unsplash.com/photo-1552664730-d307ca884978?w=400&h=300&fit=crop", imageAlt: "Marketing campaign"},
|
||||
{
|
||||
imageSrc: "https://images.unsplash.com/photo-1460925895917-adf4198c868f?w=400&h=300&fit=crop", imageAlt: "Analytics"},
|
||||
],
|
||||
},
|
||||
]}
|
||||
animationType="slide-up"
|
||||
title="Our Services"
|
||||
description="We offer a comprehensive range of design and marketing services"
|
||||
tag="What We Do"
|
||||
tagIcon={Sparkles}
|
||||
tagAnimation="slide-up"
|
||||
textboxLayout="default"
|
||||
useInvertedBackground={false}
|
||||
buttonAnimation="slide-up"
|
||||
/>
|
||||
</div>
|
||||
|
||||
<div id="pricing" data-section="pricing">
|
||||
<PricingCardThree
|
||||
plans={[
|
||||
{
|
||||
id: "1", price: "$2,999", name: "Starter", buttons: [
|
||||
{ text: "Get Started", href: "/contact" },
|
||||
{ text: "Learn More", href: "/contact" },
|
||||
],
|
||||
features: ["Brand Strategy", "Logo Design", "1 Round of Revisions", "Email Support"],
|
||||
},
|
||||
{
|
||||
id: "2", badge: "Most Popular", badgeIcon: Sparkles,
|
||||
price: "$5,999", name: "Professional", buttons: [
|
||||
{ text: "Get Started", href: "/contact" },
|
||||
{ text: "Learn More", href: "/contact" },
|
||||
],
|
||||
features: [
|
||||
"Complete Brand Identity", "Website Design", "3 Rounds of Revisions", "Priority Support", "Social Media Kit"],
|
||||
},
|
||||
{
|
||||
id: "3", price: "$9,999", name: "Enterprise", buttons: [
|
||||
{ text: "Get Started", href: "/contact" },
|
||||
{ text: "Learn More", href: "/contact" },
|
||||
],
|
||||
features: [
|
||||
"Full Brand Overhaul", "Custom Website Development", "Unlimited Revisions", "24/7 Dedicated Support", "Marketing Campaign", "Analytics & Reporting"],
|
||||
},
|
||||
]}
|
||||
title="Our Pricing"
|
||||
description="Choose the perfect plan for your project"
|
||||
tag="Pricing"
|
||||
tagIcon={Award}
|
||||
tagAnimation="slide-up"
|
||||
textboxLayout="default"
|
||||
useInvertedBackground={false}
|
||||
animationType="slide-up"
|
||||
buttonAnimation="slide-up"
|
||||
/>
|
||||
</div>
|
||||
|
||||
<div id="testimonials" data-section="testimonials">
|
||||
<TestimonialCardTen
|
||||
testimonials={[
|
||||
{
|
||||
id: "1", title: "Transformed Our Brand", quote: "Working with Vortex was transformative. They took our vision and created a brand identity that truly represents our values.", name: "Sarah Johnson", role: "CEO, Tech Startup", imageSrc: "https://images.unsplash.com/photo-1494790108377-be9c29b29330?w=200&h=200&fit=crop", imageAlt: "Sarah Johnson"},
|
||||
{
|
||||
id: "2", title: "Exceptional Results", quote: "The website they designed increased our conversions by 40%. Their attention to detail is unmatched.", name: "Michael Chen", role: "Founder, E-commerce Business", imageSrc: "https://images.unsplash.com/photo-1507003211169-0a1dd7228f2d?w=200&h=200&fit=crop", imageAlt: "Michael Chen"},
|
||||
{
|
||||
id: "3", title: "Professional & Creative", quote: "Vortex delivered beyond our expectations. Their team is professional, responsive, and incredibly creative.", name: "Emma Davis", role: "Marketing Manager, Global Brand", imageSrc: "https://images.unsplash.com/photo-1438761681033-6461ffad8d80?w=200&h=200&fit=crop", imageAlt: "Emma Davis"},
|
||||
]}
|
||||
title="What Our Clients Say"
|
||||
description="Real testimonials from our satisfied clients"
|
||||
tag="Testimonials"
|
||||
tagIcon={MessageSquare}
|
||||
tagAnimation="slide-up"
|
||||
textboxLayout="default"
|
||||
useInvertedBackground={false}
|
||||
/>
|
||||
</div>
|
||||
|
||||
<div id="faq" data-section="faq">
|
||||
<FaqSplitText
|
||||
faqs={[
|
||||
{
|
||||
id: "1", title: "How long does a typical project take?", content: "Project timelines vary depending on scope and complexity. Most brand projects take 4-8 weeks, while website projects typically take 8-12 weeks."},
|
||||
{
|
||||
id: "2", title: "Do you offer revision rounds?", content: "Yes! Revisions are included in all our packages. Starter includes 1 round, Professional includes 3 rounds, and Enterprise includes unlimited revisions."},
|
||||
{
|
||||
id: "3", title: "What's your process?", content: "We follow a collaborative process: Discovery → Strategy → Design → Revisions → Delivery. We keep you involved at every step."},
|
||||
{
|
||||
id: "4", title: "Can you work with remote teams?", content: "Absolutely! We have experience working with teams across different time zones. Communication is seamless through our project management tools."},
|
||||
{
|
||||
id: "5", title: "Do you provide ongoing support?", content: "Yes, we offer post-launch support packages. All our plans include some level of support, with Enterprise including 24/7 dedicated support."},
|
||||
]}
|
||||
sideTitle="Frequently Asked Questions"
|
||||
sideDescription="Find answers to common questions about our services"
|
||||
textPosition="left"
|
||||
useInvertedBackground={false}
|
||||
animationType="smooth"
|
||||
faqsAnimation="slide-up"
|
||||
/>
|
||||
</div>
|
||||
|
||||
<div id="contact-section" data-section="contact-section">
|
||||
<ContactText
|
||||
text="Ready to bring your vision to life? Let's create something amazing together."
|
||||
animationType="entrance-slide"
|
||||
buttons={[
|
||||
{ text: "Get in Touch", href: "/contact" },
|
||||
{ text: "View Portfolio", href: "#services" },
|
||||
]}
|
||||
background={{ variant: "plain" }}
|
||||
useInvertedBackground={false}
|
||||
/>
|
||||
</div>
|
||||
|
||||
<FooterBaseReveal
|
||||
columns={[
|
||||
{
|
||||
title: "Product", items: [
|
||||
{ label: "Features", href: "#services" },
|
||||
{ label: "Pricing", href: "#pricing" },
|
||||
{ label: "Testimonials", href: "#testimonials" },
|
||||
],
|
||||
},
|
||||
{
|
||||
title: "Company", items: [
|
||||
{ label: "About", href: "#about" },
|
||||
{ label: "Blog", href: "#" },
|
||||
{ label: "Careers", href: "#" },
|
||||
],
|
||||
},
|
||||
{
|
||||
title: "Legal", items: [
|
||||
{ label: "Privacy", href: "#" },
|
||||
{ label: "Terms", href: "#" },
|
||||
{ label: "Contact", href: "/contact" },
|
||||
],
|
||||
},
|
||||
]}
|
||||
copyrightText="© 2025 Vortex Web Studio. All rights reserved."
|
||||
/>
|
||||
</ThemeProvider>
|
||||
);
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user