Compare commits
2 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
| a84ba45203 | |||
| 350e1b5375 |
231
src/app/page.tsx
231
src/app/page.tsx
@@ -33,29 +33,17 @@ export default function LandingPage() {
|
|||||||
<NavbarLayoutFloatingOverlay
|
<NavbarLayoutFloatingOverlay
|
||||||
navItems={[
|
navItems={[
|
||||||
{
|
{
|
||||||
name: "Home",
|
name: "Home", id: "home"},
|
||||||
id: "home",
|
|
||||||
},
|
|
||||||
{
|
{
|
||||||
name: "Services",
|
name: "Services", id: "services"},
|
||||||
id: "services",
|
|
||||||
},
|
|
||||||
{
|
{
|
||||||
name: "About",
|
name: "About", id: "about"},
|
||||||
id: "about",
|
|
||||||
},
|
|
||||||
{
|
{
|
||||||
name: "Works",
|
name: "Works", id: "works"},
|
||||||
id: "works",
|
|
||||||
},
|
|
||||||
{
|
{
|
||||||
name: "Pricing",
|
name: "Pricing", id: "pricing"},
|
||||||
id: "pricing",
|
|
||||||
},
|
|
||||||
{
|
{
|
||||||
name: "Contact",
|
name: "Contact", id: "contact"},
|
||||||
id: "contact",
|
|
||||||
},
|
|
||||||
]}
|
]}
|
||||||
brandName="Tattoo Phoenix"
|
brandName="Tattoo Phoenix"
|
||||||
/>
|
/>
|
||||||
@@ -64,48 +52,27 @@ export default function LandingPage() {
|
|||||||
<div id="home" data-section="home">
|
<div id="home" data-section="home">
|
||||||
<HeroBillboardRotatedCarousel
|
<HeroBillboardRotatedCarousel
|
||||||
background={{
|
background={{
|
||||||
variant: "rotated-rays-animated",
|
variant: "rotated-rays-animated"}}
|
||||||
}}
|
title="Expert Fine-Line Artistry in Greensboro"
|
||||||
title="Artistry Written in Ink"
|
|
||||||
description="Experience professional, fine-line tattoo craftsmanship and expert piercings by Da Kim. Greensboro's choice for custom designs and budget-friendly artistry."
|
description="Experience professional, fine-line tattoo craftsmanship and expert piercings by Da Kim. Greensboro's choice for custom designs and budget-friendly artistry."
|
||||||
tag="Est. Fine Line Specialist"
|
tag="Est. Fine Line Specialist"
|
||||||
buttons={[
|
buttons={[
|
||||||
{
|
{
|
||||||
text: "Book an Appointment",
|
text: "Book an Appointment", href: "#contact"},
|
||||||
href: "#contact",
|
|
||||||
},
|
|
||||||
]}
|
]}
|
||||||
carouselItems={[
|
carouselItems={[
|
||||||
{
|
{
|
||||||
id: "1",
|
id: "1", imageSrc: "http://img.b2bpic.net/free-photo/young-man-tattoos-wearing-headphones-listens-music-draws-notebook_1321-940.jpg?_wi=1", imageAlt: "Fine line tattoo detail"},
|
||||||
imageSrc: "http://img.b2bpic.net/free-photo/young-man-tattoos-wearing-headphones-listens-music-draws-notebook_1321-940.jpg?_wi=1",
|
|
||||||
imageAlt: "Fine line tattoo detail",
|
|
||||||
},
|
|
||||||
{
|
{
|
||||||
id: "2",
|
id: "2", imageSrc: "http://img.b2bpic.net/free-photo/beautiful-young-tattooed-person_23-2149563288.jpg?_wi=1", imageAlt: "Piercing equipment"},
|
||||||
imageSrc: "http://img.b2bpic.net/free-photo/beautiful-young-tattooed-person_23-2149563288.jpg?_wi=1",
|
|
||||||
imageAlt: "Piercing equipment",
|
|
||||||
},
|
|
||||||
{
|
{
|
||||||
id: "3",
|
id: "3", imageSrc: "http://img.b2bpic.net/free-photo/tattooed-man-waiting-bar_23-2148111049.jpg?_wi=1", imageAlt: "Tattoo sketching"},
|
||||||
imageSrc: "http://img.b2bpic.net/free-photo/tattooed-man-waiting-bar_23-2148111049.jpg?_wi=1",
|
|
||||||
imageAlt: "Tattoo sketching",
|
|
||||||
},
|
|
||||||
{
|
{
|
||||||
id: "4",
|
id: "4", imageSrc: "http://img.b2bpic.net/free-photo/young-focused-tattoo-master-is-makining-tattoo-client-s-hand-dark-tattoo-salon_613910-17258.jpg?_wi=1", imageAlt: "Studio interior"},
|
||||||
imageSrc: "http://img.b2bpic.net/free-photo/young-focused-tattoo-master-is-makining-tattoo-client-s-hand-dark-tattoo-salon_613910-17258.jpg?_wi=1",
|
|
||||||
imageAlt: "Studio interior",
|
|
||||||
},
|
|
||||||
{
|
{
|
||||||
id: "5",
|
id: "5", imageSrc: "http://img.b2bpic.net/free-photo/handsome-tattooed-sexy-man-with-long-hair-mustache-knitted-sweater-portrait-outside-close-up_1321-4575.jpg?_wi=1", imageAlt: "Black and grey art"},
|
||||||
imageSrc: "http://img.b2bpic.net/free-photo/handsome-tattooed-sexy-man-with-long-hair-mustache-knitted-sweater-portrait-outside-close-up_1321-4575.jpg?_wi=1",
|
|
||||||
imageAlt: "Black and grey art",
|
|
||||||
},
|
|
||||||
{
|
{
|
||||||
id: "6",
|
id: "6", imageSrc: "http://img.b2bpic.net/free-photo/experienced-tattoo-artist-front-his-studio_23-2149479274.jpg", imageAlt: "Artist Da Kim"},
|
||||||
imageSrc: "http://img.b2bpic.net/free-photo/experienced-tattoo-artist-front-his-studio_23-2149479274.jpg",
|
|
||||||
imageAlt: "Artist Da Kim",
|
|
||||||
},
|
|
||||||
]}
|
]}
|
||||||
/>
|
/>
|
||||||
</div>
|
</div>
|
||||||
@@ -118,20 +85,11 @@ export default function LandingPage() {
|
|||||||
useInvertedBackground={true}
|
useInvertedBackground={true}
|
||||||
features={[
|
features={[
|
||||||
{
|
{
|
||||||
title: "Custom Fine-Line Tattoos",
|
title: "Custom Fine-Line Tattoos", description: "Intricate, custom designs tailored to your vision with clean lines and expert execution.", imageSrc: "http://img.b2bpic.net/free-vector/original-tattoos-elements-linear-style_23-2147560824.jpg"},
|
||||||
description: "Intricate, custom designs tailored to your vision with clean lines and expert execution.",
|
|
||||||
imageSrc: "http://img.b2bpic.net/free-vector/original-tattoos-elements-linear-style_23-2147560824.jpg",
|
|
||||||
},
|
|
||||||
{
|
{
|
||||||
title: "Expert Body Piercings",
|
title: "Expert Body Piercings", description: "Professional, safe, and hygienic piercing services with a wide selection of jewelry.", imageSrc: "http://img.b2bpic.net/free-photo/portrait-woman-wearing-jewelry-makeup_23-2150738193.jpg"},
|
||||||
description: "Professional, safe, and hygienic piercing services with a wide selection of jewelry.",
|
|
||||||
imageSrc: "http://img.b2bpic.net/free-photo/portrait-woman-wearing-jewelry-makeup_23-2150738193.jpg",
|
|
||||||
},
|
|
||||||
{
|
{
|
||||||
title: "Professional Cover-ups",
|
title: "Professional Cover-ups", description: "Transform existing ink with masterful cover-up techniques designed to blend and reinvent.", imageSrc: "http://img.b2bpic.net/free-photo/young-handsome-tattooed-man-having-breakfast-bed-open-air-outdoors-garden_1321-994.jpg"},
|
||||||
description: "Transform existing ink with masterful cover-up techniques designed to blend and reinvent.",
|
|
||||||
imageSrc: "http://img.b2bpic.net/free-photo/young-handsome-tattooed-man-having-breakfast-bed-open-air-outdoors-garden_1321-994.jpg",
|
|
||||||
},
|
|
||||||
]}
|
]}
|
||||||
title="Professional Tattoo & Piercing Services"
|
title="Professional Tattoo & Piercing Services"
|
||||||
description="We specialize in custom artwork, fine-line precision, and safe, professional piercing procedures for every style."
|
description="We specialize in custom artwork, fine-line precision, and safe, professional piercing procedures for every style."
|
||||||
@@ -159,41 +117,17 @@ export default function LandingPage() {
|
|||||||
useInvertedBackground={true}
|
useInvertedBackground={true}
|
||||||
products={[
|
products={[
|
||||||
{
|
{
|
||||||
id: "1",
|
id: "1", name: "Custom Fine-Line", price: "Starts $35", imageSrc: "http://img.b2bpic.net/free-photo/talented-girl-is-sketching-digital-tablet-while-sitting-her-cozy-studio_613910-11488.jpg"},
|
||||||
name: "Custom Fine-Line",
|
|
||||||
price: "Starts $35",
|
|
||||||
imageSrc: "http://img.b2bpic.net/free-photo/talented-girl-is-sketching-digital-tablet-while-sitting-her-cozy-studio_613910-11488.jpg",
|
|
||||||
},
|
|
||||||
{
|
{
|
||||||
id: "2",
|
id: "2", name: "Detailed Cover-up", price: "Starts $35", imageSrc: "http://img.b2bpic.net/free-photo/tattooed-hands-hands-holding-glass-with-coffee_1321-872.jpg"},
|
||||||
name: "Detailed Cover-up",
|
|
||||||
price: "Starts $35",
|
|
||||||
imageSrc: "http://img.b2bpic.net/free-photo/tattooed-hands-hands-holding-glass-with-coffee_1321-872.jpg",
|
|
||||||
},
|
|
||||||
{
|
{
|
||||||
id: "3",
|
id: "3", name: "Original Design", price: "Starts $35", imageSrc: "http://img.b2bpic.net/free-photo/close-up-tattoo-needle_23-2149479268.jpg"},
|
||||||
name: "Original Design",
|
|
||||||
price: "Starts $35",
|
|
||||||
imageSrc: "http://img.b2bpic.net/free-photo/close-up-tattoo-needle_23-2149479268.jpg",
|
|
||||||
},
|
|
||||||
{
|
{
|
||||||
id: "4",
|
id: "4", name: "Professional Piercing", price: "Starts $20", imageSrc: "http://img.b2bpic.net/free-photo/man-with-colorful-tattoos-resting-white-sheet_1321-970.jpg"},
|
||||||
name: "Professional Piercing",
|
|
||||||
price: "Starts $20",
|
|
||||||
imageSrc: "http://img.b2bpic.net/free-photo/man-with-colorful-tattoos-resting-white-sheet_1321-970.jpg",
|
|
||||||
},
|
|
||||||
{
|
{
|
||||||
id: "5",
|
id: "5", name: "Minimalist Tattoo", price: "Starts $35", imageSrc: "http://img.b2bpic.net/free-photo/experienced-tattoo-artist-working-client-tattoo_23-2149479246.jpg"},
|
||||||
name: "Minimalist Tattoo",
|
|
||||||
price: "Starts $35",
|
|
||||||
imageSrc: "http://img.b2bpic.net/free-photo/experienced-tattoo-artist-working-client-tattoo_23-2149479246.jpg",
|
|
||||||
},
|
|
||||||
{
|
{
|
||||||
id: "6",
|
id: "6", name: "Custom Ink Work", price: "Starts $35", imageSrc: "http://img.b2bpic.net/free-photo/young-man-tattoos-wearing-headphones-listens-music-draws-notebook_1321-944.jpg"},
|
||||||
name: "Custom Ink Work",
|
|
||||||
price: "Starts $35",
|
|
||||||
imageSrc: "http://img.b2bpic.net/free-photo/young-man-tattoos-wearing-headphones-listens-music-draws-notebook_1321-944.jpg",
|
|
||||||
},
|
|
||||||
]}
|
]}
|
||||||
title="Our Artistic Portfolio"
|
title="Our Artistic Portfolio"
|
||||||
description="Explore the precision and artistry of our recent custom tattoo works."
|
description="Explore the precision and artistry of our recent custom tattoo works."
|
||||||
@@ -207,26 +141,12 @@ export default function LandingPage() {
|
|||||||
useInvertedBackground={false}
|
useInvertedBackground={false}
|
||||||
plans={[
|
plans={[
|
||||||
{
|
{
|
||||||
id: "tattoo",
|
id: "tattoo", badge: "Popular", price: "$35+", subtitle: "For custom tattoos of any size", features: [
|
||||||
badge: "Popular",
|
"Custom design", "Fine-line precision", "Walk-ins welcome"],
|
||||||
price: "$35+",
|
|
||||||
subtitle: "For custom tattoos of any size",
|
|
||||||
features: [
|
|
||||||
"Custom design",
|
|
||||||
"Fine-line precision",
|
|
||||||
"Walk-ins welcome",
|
|
||||||
],
|
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
id: "piercing",
|
id: "piercing", badge: "Essential", price: "$20+", subtitle: "For professional piercing services", features: [
|
||||||
badge: "Essential",
|
"Safe procedure", "Quality jewelry", "Expert care"],
|
||||||
price: "$20+",
|
|
||||||
subtitle: "For professional piercing services",
|
|
||||||
features: [
|
|
||||||
"Safe procedure",
|
|
||||||
"Quality jewelry",
|
|
||||||
"Expert care",
|
|
||||||
],
|
|
||||||
},
|
},
|
||||||
]}
|
]}
|
||||||
title="Straightforward Pricing"
|
title="Straightforward Pricing"
|
||||||
@@ -240,60 +160,15 @@ export default function LandingPage() {
|
|||||||
useInvertedBackground={true}
|
useInvertedBackground={true}
|
||||||
testimonials={[
|
testimonials={[
|
||||||
{
|
{
|
||||||
id: "t1",
|
id: "t1", name: "Sarah Miller", date: "Oct 2023", title: "Great Experience", quote: "Da Kim did an amazing job with my cover-up! Affordable and professional.", tag: "Cover-up", avatarSrc: "http://img.b2bpic.net/free-photo/smiley-female-friends-spending-time-together-drinking-wine-terrace_23-2149053073.jpg", imageSrc: "http://img.b2bpic.net/free-photo/young-man-tattoos-wearing-headphones-listens-music-draws-notebook_1321-940.jpg?_wi=2", imageAlt: "satisfied customer healed tattoo"},
|
||||||
name: "Sarah Miller",
|
|
||||||
date: "Oct 2023",
|
|
||||||
title: "Great Experience",
|
|
||||||
quote: "Da Kim did an amazing job with my cover-up! Affordable and professional.",
|
|
||||||
tag: "Cover-up",
|
|
||||||
avatarSrc: "http://img.b2bpic.net/free-photo/smiley-female-friends-spending-time-together-drinking-wine-terrace_23-2149053073.jpg",
|
|
||||||
imageSrc: "http://img.b2bpic.net/free-photo/young-man-tattoos-wearing-headphones-listens-music-draws-notebook_1321-940.jpg?_wi=2",
|
|
||||||
imageAlt: "satisfied customer healed tattoo",
|
|
||||||
},
|
|
||||||
{
|
{
|
||||||
id: "t2",
|
id: "t2", name: "James Chen", date: "Sep 2023", title: "Highly Recommend", quote: "Clean shop, fair pricing, and Da Kim is truly an artist.", tag: "Custom Art", avatarSrc: "http://img.b2bpic.net/free-photo/craft-beer-concept-with-hipster-couple_23-2148111153.jpg", imageSrc: "http://img.b2bpic.net/free-photo/beautiful-young-tattooed-person_23-2149563288.jpg?_wi=2", imageAlt: "satisfied customer healed tattoo"},
|
||||||
name: "James Chen",
|
|
||||||
date: "Sep 2023",
|
|
||||||
title: "Highly Recommend",
|
|
||||||
quote: "Clean shop, fair pricing, and Da Kim is truly an artist.",
|
|
||||||
tag: "Custom Art",
|
|
||||||
avatarSrc: "http://img.b2bpic.net/free-photo/craft-beer-concept-with-hipster-couple_23-2148111153.jpg",
|
|
||||||
imageSrc: "http://img.b2bpic.net/free-photo/beautiful-young-tattooed-person_23-2149563288.jpg?_wi=2",
|
|
||||||
imageAlt: "satisfied customer healed tattoo",
|
|
||||||
},
|
|
||||||
{
|
{
|
||||||
id: "t3",
|
id: "t3", name: "Emily Davis", date: "Aug 2023", title: "Best Piercing", quote: "Quick, professional, and very affordable pricing for piercings.", tag: "Piercing", avatarSrc: "http://img.b2bpic.net/free-photo/experienced-tattoo-artist-working-client-tattoo_23-2149479244.jpg", imageSrc: "http://img.b2bpic.net/free-photo/tattooed-man-waiting-bar_23-2148111049.jpg?_wi=2", imageAlt: "satisfied customer healed tattoo"},
|
||||||
name: "Emily Davis",
|
|
||||||
date: "Aug 2023",
|
|
||||||
title: "Best Piercing",
|
|
||||||
quote: "Quick, professional, and very affordable pricing for piercings.",
|
|
||||||
tag: "Piercing",
|
|
||||||
avatarSrc: "http://img.b2bpic.net/free-photo/experienced-tattoo-artist-working-client-tattoo_23-2149479244.jpg",
|
|
||||||
imageSrc: "http://img.b2bpic.net/free-photo/tattooed-man-waiting-bar_23-2148111049.jpg?_wi=2",
|
|
||||||
imageAlt: "satisfied customer healed tattoo",
|
|
||||||
},
|
|
||||||
{
|
{
|
||||||
id: "t4",
|
id: "t4", name: "Michael Ross", date: "Jul 2023", title: "Impressive Detail", quote: "The fine-line work is incredible. Will definitely be coming back.", tag: "Fine-line", avatarSrc: "http://img.b2bpic.net/free-photo/tattooed-hands-coffee-laptop_1321-882.jpg", imageSrc: "http://img.b2bpic.net/free-photo/young-focused-tattoo-master-is-makining-tattoo-client-s-hand-dark-tattoo-salon_613910-17258.jpg?_wi=2", imageAlt: "satisfied customer healed tattoo"},
|
||||||
name: "Michael Ross",
|
|
||||||
date: "Jul 2023",
|
|
||||||
title: "Impressive Detail",
|
|
||||||
quote: "The fine-line work is incredible. Will definitely be coming back.",
|
|
||||||
tag: "Fine-line",
|
|
||||||
avatarSrc: "http://img.b2bpic.net/free-photo/tattooed-hands-coffee-laptop_1321-882.jpg",
|
|
||||||
imageSrc: "http://img.b2bpic.net/free-photo/young-focused-tattoo-master-is-makining-tattoo-client-s-hand-dark-tattoo-salon_613910-17258.jpg?_wi=2",
|
|
||||||
imageAlt: "satisfied customer healed tattoo",
|
|
||||||
},
|
|
||||||
{
|
{
|
||||||
id: "t5",
|
id: "t5", name: "Jessica Wright", date: "Jun 2023", title: "Friendly Shop", quote: "Welcoming atmosphere, great advice, and I love my new ink.", tag: "Custom Ink", avatarSrc: "http://img.b2bpic.net/free-photo/young-caucasian-woman-wearing-casual-white-shirt-isolated-background-smiling-with-happy-face-looking-pointing-side-with-thumb-up_839833-6551.jpg", imageSrc: "http://img.b2bpic.net/free-photo/handsome-tattooed-sexy-man-with-long-hair-mustache-knitted-sweater-portrait-outside-close-up_1321-4575.jpg?_wi=2", imageAlt: "satisfied customer healed tattoo"},
|
||||||
name: "Jessica Wright",
|
|
||||||
date: "Jun 2023",
|
|
||||||
title: "Friendly Shop",
|
|
||||||
quote: "Welcoming atmosphere, great advice, and I love my new ink.",
|
|
||||||
tag: "Custom Ink",
|
|
||||||
avatarSrc: "http://img.b2bpic.net/free-photo/young-caucasian-woman-wearing-casual-white-shirt-isolated-background-smiling-with-happy-face-looking-pointing-side-with-thumb-up_839833-6551.jpg",
|
|
||||||
imageSrc: "http://img.b2bpic.net/free-photo/handsome-tattooed-sexy-man-with-long-hair-mustache-knitted-sweater-portrait-outside-close-up_1321-4575.jpg?_wi=2",
|
|
||||||
imageAlt: "satisfied customer healed tattoo",
|
|
||||||
},
|
|
||||||
]}
|
]}
|
||||||
title="Trusted by Greensboro"
|
title="Trusted by Greensboro"
|
||||||
description="Join our growing family of satisfied clients who trust Da Kim for their artistic tattoo and piercing needs."
|
description="Join our growing family of satisfied clients who trust Da Kim for their artistic tattoo and piercing needs."
|
||||||
@@ -306,20 +181,11 @@ export default function LandingPage() {
|
|||||||
useInvertedBackground={false}
|
useInvertedBackground={false}
|
||||||
faqs={[
|
faqs={[
|
||||||
{
|
{
|
||||||
id: "f1",
|
id: "f1", title: "Do I need an appointment?", content: "While appointments are encouraged, we also welcome walk-ins for both tattoos and piercings."},
|
||||||
title: "Do I need an appointment?",
|
|
||||||
content: "While appointments are encouraged, we also welcome walk-ins for both tattoos and piercings.",
|
|
||||||
},
|
|
||||||
{
|
{
|
||||||
id: "f2",
|
id: "f2", title: "What are your starting prices?", content: "Tattoos start at $35, and piercings start at $20."},
|
||||||
title: "What are your starting prices?",
|
|
||||||
content: "Tattoos start at $35, and piercings start at $20.",
|
|
||||||
},
|
|
||||||
{
|
{
|
||||||
id: "f3",
|
id: "f3", title: "Can I bring my own design?", content: "Absolutely! We love working with your personal designs and ideas."},
|
||||||
title: "Can I bring my own design?",
|
|
||||||
content: "Absolutely! We love working with your personal designs and ideas.",
|
|
||||||
},
|
|
||||||
]}
|
]}
|
||||||
title="Frequently Asked Questions"
|
title="Frequently Asked Questions"
|
||||||
description="Have questions about your tattoo or piercing? We've got answers."
|
description="Have questions about your tattoo or piercing? We've got answers."
|
||||||
@@ -331,8 +197,7 @@ export default function LandingPage() {
|
|||||||
<ContactSplit
|
<ContactSplit
|
||||||
useInvertedBackground={true}
|
useInvertedBackground={true}
|
||||||
background={{
|
background={{
|
||||||
variant: "plain",
|
variant: "plain"}}
|
||||||
}}
|
|
||||||
tag="Visit Us"
|
tag="Visit Us"
|
||||||
title="Ready for your next tattoo?"
|
title="Ready for your next tattoo?"
|
||||||
description="Reach out to Da Kim today. We are located at 1618 Spring Garden St C, Greensboro, NC. Call us at (336) 521-5005."
|
description="Reach out to Da Kim today. We are located at 1618 Spring Garden St C, Greensboro, NC. Call us at (336) 521-5005."
|
||||||
@@ -347,29 +212,19 @@ export default function LandingPage() {
|
|||||||
<FooterSimple
|
<FooterSimple
|
||||||
columns={[
|
columns={[
|
||||||
{
|
{
|
||||||
title: "Services",
|
title: "Services", items: [
|
||||||
items: [
|
|
||||||
{
|
{
|
||||||
label: "Custom Tattoos",
|
label: "Custom Tattoos", href: "#services"},
|
||||||
href: "#services",
|
|
||||||
},
|
|
||||||
{
|
{
|
||||||
label: "Body Piercings",
|
label: "Body Piercings", href: "#services"},
|
||||||
href: "#services",
|
|
||||||
},
|
|
||||||
],
|
],
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
title: "Visit",
|
title: "Visit", items: [
|
||||||
items: [
|
|
||||||
{
|
{
|
||||||
label: "1618 Spring Garden St C",
|
label: "1618 Spring Garden St C", href: "#"},
|
||||||
href: "#",
|
|
||||||
},
|
|
||||||
{
|
{
|
||||||
label: "(336) 521-5005",
|
label: "(336) 521-5005", href: "tel:3365215005"},
|
||||||
href: "tel:3365215005",
|
|
||||||
},
|
|
||||||
],
|
],
|
||||||
},
|
},
|
||||||
]}
|
]}
|
||||||
|
|||||||
Reference in New Issue
Block a user