Merge version_1 into main
Merge version_1 into main
This commit was merged in pull request #6.
This commit is contained in:
@@ -92,7 +92,7 @@ export default function GalleryPage() {
|
||||
buttonAnimation="blur-reveal"
|
||||
mediaItems={[
|
||||
{
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/hand-holding-brush-close-up_23-2148966902.jpg",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/hand-holding-brush-close-up_23-2148966902.jpg?_wi=2",
|
||||
imageAlt: "Festival face painting event photography",
|
||||
},
|
||||
]}
|
||||
@@ -118,7 +118,7 @@ export default function GalleryPage() {
|
||||
name: "Kids Face Painting",
|
||||
price: "Colorful Designs",
|
||||
variant: "Birthday Parties",
|
||||
imageSrc: "http://img.b2bpic.net/free-psd/holi-festival-celebration-instagram-posts_23-2151227255.jpg",
|
||||
imageSrc: "http://img.b2bpic.net/free-psd/holi-festival-celebration-instagram-posts_23-2151227255.jpg?_wi=2",
|
||||
imageAlt: "Kids birthday party face painting designs",
|
||||
},
|
||||
{
|
||||
@@ -126,7 +126,7 @@ export default function GalleryPage() {
|
||||
name: "Festival Face Art",
|
||||
price: "Creative Artistry",
|
||||
variant: "Outdoor Events",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/hand-holding-brush-close-up_23-2148966902.jpg",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/hand-holding-brush-close-up_23-2148966902.jpg?_wi=3",
|
||||
imageAlt: "Festival face painting artwork showcase",
|
||||
},
|
||||
{
|
||||
@@ -134,7 +134,7 @@ export default function GalleryPage() {
|
||||
name: "Body Painting Art",
|
||||
price: "Professional Service",
|
||||
variant: "Special Events",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/beautiful-portrait-women-with-all-kinds-body_23-2149159242.jpg",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/beautiful-portrait-women-with-all-kinds-body_23-2149159242.jpg?_wi=2",
|
||||
imageAlt: "Professional body art photography",
|
||||
},
|
||||
{
|
||||
@@ -142,7 +142,7 @@ export default function GalleryPage() {
|
||||
name: "Custom Designs",
|
||||
price: "Personalized Art",
|
||||
variant: "Themed Events",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/fun-portrait-with-decorations-face_23-2150749319.jpg",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/fun-portrait-with-decorations-face_23-2150749319.jpg?_wi=2",
|
||||
imageAlt: "Custom themed face painting designs",
|
||||
},
|
||||
{
|
||||
@@ -150,7 +150,7 @@ export default function GalleryPage() {
|
||||
name: "Princess & Character",
|
||||
price: "Enchanting Designs",
|
||||
variant: "Theme Parties",
|
||||
imageSrc: "http://img.b2bpic.net/free-psd/holi-festival-celebration-instagram-posts_23-2151227255.jpg",
|
||||
imageSrc: "http://img.b2bpic.net/free-psd/holi-festival-celebration-instagram-posts_23-2151227255.jpg?_wi=3",
|
||||
imageAlt: "Princess character face painting designs",
|
||||
},
|
||||
{
|
||||
@@ -158,7 +158,7 @@ export default function GalleryPage() {
|
||||
name: "Festival Entertainment",
|
||||
price: "Live Entertainment",
|
||||
variant: "Large Events",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/hand-holding-brush-close-up_23-2148966902.jpg",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/hand-holding-brush-close-up_23-2148966902.jpg?_wi=4",
|
||||
imageAlt: "Festival face painter with audience",
|
||||
},
|
||||
{
|
||||
@@ -166,7 +166,7 @@ export default function GalleryPage() {
|
||||
name: "Artistic Body Designs",
|
||||
price: "High Impact Art",
|
||||
variant: "Photo Shoots",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/beautiful-portrait-women-with-all-kinds-body_23-2149159242.jpg",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/beautiful-portrait-women-with-all-kinds-body_23-2149159242.jpg?_wi=3",
|
||||
imageAlt: "Artistic body painting photoshoot",
|
||||
},
|
||||
{
|
||||
@@ -174,7 +174,7 @@ export default function GalleryPage() {
|
||||
name: "Corporate Events",
|
||||
price: "Professional Art",
|
||||
variant: "Team Events",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/male-dj-party-charge-music-entertainment_23-2149658399.jpg",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/male-dj-party-charge-music-entertainment_23-2149658399.jpg?_wi=3",
|
||||
imageAlt: "Corporate event face painting",
|
||||
},
|
||||
]}
|
||||
|
||||
@@ -1,27 +1,32 @@
|
||||
import type { Metadata } from "next";
|
||||
import { Halant } from "next/font/google";
|
||||
import { Inter } from "next/font/google";
|
||||
import { DM_Sans } from "next/font/google";
|
||||
import "./globals.css";
|
||||
import { ServiceWrapper } from "@/components/ServiceWrapper";
|
||||
import Tag from "@/tag/Tag";
|
||||
import { getVisualEditScript } from "@/utils/visual-edit-script";
|
||||
import { DM_Sans } from "next/font/google";
|
||||
|
||||
const halant = Halant({
|
||||
variable: "--font-halant",
|
||||
subsets: ["latin"],
|
||||
weight: ["300", "400", "500", "600", "700"],
|
||||
});
|
||||
|
||||
|
||||
export const metadata: Metadata = {
|
||||
title: "Webild components 2",
|
||||
description: "Generated by create next app",
|
||||
};
|
||||
const inter = Inter({
|
||||
variable: "--font-inter",
|
||||
subsets: ["latin"],
|
||||
});
|
||||
|
||||
const dmSans = DM_Sans({
|
||||
variable: "--font-dm-sans",
|
||||
subsets: ["latin"],
|
||||
});
|
||||
const inter = Inter({
|
||||
variable: "--font-inter",
|
||||
subsets: ["latin"],
|
||||
});
|
||||
|
||||
export const metadata: Metadata = {
|
||||
title: "Paintasy Face and Body Art - Professional Event Entertainment",
|
||||
description: "Professional face painting and body art services for parties, festivals, and corporate events. Transform your event with creativity and color. Book your entertainment today.",
|
||||
};
|
||||
|
||||
export default function RootLayout({
|
||||
children,
|
||||
@@ -31,7 +36,9 @@ export default function RootLayout({
|
||||
return (
|
||||
<html lang="en" suppressHydrationWarning>
|
||||
<ServiceWrapper>
|
||||
<body className={`${dmSans.variable} ${inter.variable} antialiased`}>
|
||||
<body
|
||||
className={`${halant.variable} ${inter.variable} ${dmSans.variable} antialiased`}
|
||||
>
|
||||
<Tag />
|
||||
{children}
|
||||
<script
|
||||
@@ -43,4 +50,4 @@ export default function RootLayout({
|
||||
</ServiceWrapper>
|
||||
</html>
|
||||
);
|
||||
}
|
||||
}
|
||||
@@ -93,7 +93,7 @@ export default function PackagesPage() {
|
||||
buttonAnimation="blur-reveal"
|
||||
mediaItems={[
|
||||
{
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/dreamy-eyes-woman-smiling-festival_23-2148338055.jpg",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/dreamy-eyes-woman-smiling-festival_23-2148338055.jpg?_wi=4",
|
||||
imageAlt: "Event face painting packages",
|
||||
},
|
||||
]}
|
||||
|
||||
@@ -124,7 +124,7 @@ export default function HomePage() {
|
||||
tag="Professional Artists"
|
||||
tagIcon={Palette}
|
||||
tagAnimation="slide-up"
|
||||
imageSrc="http://img.b2bpic.net/free-photo/portrait-smiling-adult-man-his-30s-that-is-painting-big-canvas-with-lot-brushes-palette-while-sitting-floor-art-studio_662251-323.jpg"
|
||||
imageSrc="http://img.b2bpic.net/free-photo/portrait-smiling-adult-man-his-30s-that-is-painting-big-canvas-with-lot-brushes-palette-while-sitting-floor-art-studio_662251-323.jpg?_wi=1"
|
||||
imageAlt="Professional face painter creating art"
|
||||
mediaAnimation="blur-reveal"
|
||||
metrics={[
|
||||
@@ -158,7 +158,7 @@ export default function HomePage() {
|
||||
title: "Kids Party Face Painting",
|
||||
description: "Fun, colorful designs perfect for birthday celebrations. Butterflies, superheroes, animals, and princesses.",
|
||||
media: {
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/dreamy-eyes-woman-smiling-festival_23-2148338055.jpg",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/dreamy-eyes-woman-smiling-festival_23-2148338055.jpg?_wi=1",
|
||||
imageAlt: "Kids party face painting designs",
|
||||
},
|
||||
items: [
|
||||
@@ -173,7 +173,7 @@ export default function HomePage() {
|
||||
title: "Festival Face Art",
|
||||
description: "Fast, creative designs perfect for large crowds and outdoor events. Artistic flair meets quick service.",
|
||||
media: {
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/smiley-woman-putting-makeup-man_23-2149357796.jpg",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/smiley-woman-putting-makeup-man_23-2149357796.jpg?_wi=1",
|
||||
imageAlt: "Festival face painting artwork",
|
||||
},
|
||||
items: [
|
||||
@@ -188,7 +188,7 @@ export default function HomePage() {
|
||||
title: "Corporate Event Entertainment",
|
||||
description: "Professional face painting for company parties, brand activations, and team celebrations.",
|
||||
media: {
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/male-dj-party-charge-music-entertainment_23-2149658399.jpg",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/male-dj-party-charge-music-entertainment_23-2149658399.jpg?_wi=1",
|
||||
imageAlt: "Corporate event face painting",
|
||||
},
|
||||
items: [
|
||||
@@ -292,7 +292,7 @@ export default function HomePage() {
|
||||
name: "Sarah Johnson",
|
||||
role: "Parent, Birthday Party Host",
|
||||
testimonial: "Paintasy was absolutely amazing! The kids loved their face paintings and the artist was so professional and friendly. Our daughter's birthday was unforgettable!",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/family-portrait-surprised-father-has-yellow-face-from-paints-cheerful-two-daughters-shows-palms-dirty-with-watercolours-paint-picture-pastime-isolated-lilac-wall-this-is-art_273609-26128.jpg",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/family-portrait-surprised-father-has-yellow-face-from-paints-cheerful-two-daughters-shows-palms-dirty-with-watercolours-paint-picture-pastime-isolated-lilac-wall-this-is-art_273609-26128.jpg?_wi=1",
|
||||
imageAlt: "Happy children at birthday party",
|
||||
icon: Heart,
|
||||
},
|
||||
@@ -301,7 +301,7 @@ export default function HomePage() {
|
||||
name: "Marcus Chen",
|
||||
role: "Festival Organizer",
|
||||
testimonial: "We hired Paintasy for our community festival and they were fantastic. Quick service, beautiful designs, and the crowd loved it. Booking them again next year!",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/man-covered-different-colors-holi_23-2148337991.jpg",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/man-covered-different-colors-holi_23-2148337991.jpg?_wi=1",
|
||||
imageAlt: "Festival attendees enjoying face painting",
|
||||
icon: Smile,
|
||||
},
|
||||
@@ -319,7 +319,7 @@ export default function HomePage() {
|
||||
name: "David Kim",
|
||||
role: "School Principal",
|
||||
testimonial: "The face painting station at our school carnival was the highlight! Kids had so much fun, and the artist was fantastic with them. Thank you!",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/family-portrait-surprised-father-has-yellow-face-from-paints-cheerful-two-daughters-shows-palms-dirty-with-watercolours-paint-picture-pastime-isolated-lilac-wall-this-is-art_273609-26128.jpg",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/family-portrait-surprised-father-has-yellow-face-from-paints-cheerful-two-daughters-shows-palms-dirty-with-watercolours-paint-picture-pastime-isolated-lilac-wall-this-is-art_273609-26128.jpg?_wi=2",
|
||||
imageAlt: "Children enjoying school event face painting",
|
||||
icon: Sparkles,
|
||||
},
|
||||
@@ -328,7 +328,7 @@ export default function HomePage() {
|
||||
name: "Jessica Martinez",
|
||||
role: "Wedding Planner",
|
||||
testimonial: "Added Paintasy as entertainment for a children's wedding reception. The kids were thrilled and parents appreciated the care taken with hygiene and safety.",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/family-portrait-surprised-father-has-yellow-face-from-paints-cheerful-two-daughters-shows-palms-dirty-with-watercolours-paint-picture-pastime-isolated-lilac-wall-this-is-art_273609-26128.jpg",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/family-portrait-surprised-father-has-yellow-face-from-paints-cheerful-two-daughters-shows-palms-dirty-with-watercolours-paint-picture-pastime-isolated-lilac-wall-this-is-art_273609-26128.jpg?_wi=3",
|
||||
imageAlt: "Children's event face painting service",
|
||||
icon: Heart,
|
||||
},
|
||||
@@ -337,7 +337,7 @@ export default function HomePage() {
|
||||
name: "Thomas Wilson",
|
||||
role: "Event Manager",
|
||||
testimonial: "From consultation to execution, Paintasy was excellent. They delivered exactly what we envisioned for our community event. A+",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/man-covered-different-colors-holi_23-2148337991.jpg",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/man-covered-different-colors-holi_23-2148337991.jpg?_wi=2",
|
||||
imageAlt: "Community event face painting",
|
||||
icon: Star,
|
||||
},
|
||||
@@ -369,7 +369,7 @@ export default function HomePage() {
|
||||
name: "Kids Face Painting",
|
||||
price: "Colorful Designs",
|
||||
variant: "Birthday Parties",
|
||||
imageSrc: "http://img.b2bpic.net/free-psd/holi-festival-celebration-instagram-posts_23-2151227255.jpg",
|
||||
imageSrc: "http://img.b2bpic.net/free-psd/holi-festival-celebration-instagram-posts_23-2151227255.jpg?_wi=1",
|
||||
imageAlt: "Collection of kids face painting designs",
|
||||
},
|
||||
{
|
||||
@@ -377,7 +377,7 @@ export default function HomePage() {
|
||||
name: "Festival Face Art",
|
||||
price: "Creative Artistry",
|
||||
variant: "Outdoor Events",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/hand-holding-brush-close-up_23-2148966902.jpg",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/hand-holding-brush-close-up_23-2148966902.jpg?_wi=1",
|
||||
imageAlt: "Festival face painting artwork",
|
||||
},
|
||||
{
|
||||
@@ -385,7 +385,7 @@ export default function HomePage() {
|
||||
name: "Body Painting Art",
|
||||
price: "Professional Service",
|
||||
variant: "Special Events",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/beautiful-portrait-women-with-all-kinds-body_23-2149159242.jpg",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/beautiful-portrait-women-with-all-kinds-body_23-2149159242.jpg?_wi=1",
|
||||
imageAlt: "Professional body art photography",
|
||||
},
|
||||
{
|
||||
@@ -393,7 +393,7 @@ export default function HomePage() {
|
||||
name: "Custom Designs",
|
||||
price: "Personalized Art",
|
||||
variant: "Themed Events",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/fun-portrait-with-decorations-face_23-2150749319.jpg",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/fun-portrait-with-decorations-face_23-2150749319.jpg?_wi=1",
|
||||
imageAlt: "Custom themed face painting designs",
|
||||
},
|
||||
]}
|
||||
|
||||
@@ -87,7 +87,7 @@ export default function ServicesPage() {
|
||||
buttonAnimation="blur-reveal"
|
||||
mediaItems={[
|
||||
{
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/dreamy-eyes-woman-smiling-festival_23-2148338055.jpg",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/dreamy-eyes-woman-smiling-festival_23-2148338055.jpg?_wi=2",
|
||||
imageAlt: "Professional face painting services",
|
||||
},
|
||||
]}
|
||||
@@ -111,7 +111,7 @@ export default function ServicesPage() {
|
||||
title: "Kids Party Face Painting",
|
||||
description: "Make birthdays magical with our professional kids' face painting. Our artists create vibrant, playful designs that children absolutely love.",
|
||||
media: {
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/dreamy-eyes-woman-smiling-festival_23-2148338055.jpg",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/dreamy-eyes-woman-smiling-festival_23-2148338055.jpg?_wi=3",
|
||||
imageAlt: "Kids party face painting showcase",
|
||||
},
|
||||
items: [
|
||||
@@ -127,7 +127,7 @@ export default function ServicesPage() {
|
||||
title: "Festival Face Art",
|
||||
description: "Perfect for outdoor events, festivals, and large gatherings. We specialize in fast, beautiful designs that work for high-capacity crowds.",
|
||||
media: {
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/smiley-woman-putting-makeup-man_23-2149357796.jpg",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/smiley-woman-putting-makeup-man_23-2149357796.jpg?_wi=2",
|
||||
imageAlt: "Festival face art designs",
|
||||
},
|
||||
items: [
|
||||
@@ -143,7 +143,7 @@ export default function ServicesPage() {
|
||||
title: "Corporate Event Entertainment",
|
||||
description: "Add a creative touch to company parties, team buildings, and brand activations. Professional service that impresses clients and energizes employees.",
|
||||
media: {
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/male-dj-party-charge-music-entertainment_23-2149658399.jpg",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/male-dj-party-charge-music-entertainment_23-2149658399.jpg?_wi=2",
|
||||
imageAlt: "Corporate event face painting service",
|
||||
},
|
||||
items: [
|
||||
|
||||
Reference in New Issue
Block a user