Merge version_1 into main #1

Merged
bender merged 6 commits from version_1 into main 2026-03-11 19:23:56 +00:00
6 changed files with 67 additions and 31 deletions

View File

@@ -67,7 +67,7 @@ export default function AboutPage() {
description:
"A powerful rendition showcasing vocal range and emotional performance",
imageSrc:
"http://img.b2bpic.net/free-photo/close-up-portrait-bearded-smiling-black-man-wool-suit_613910-16049.jpg",
"http://img.b2bpic.net/free-photo/close-up-portrait-bearded-smiling-black-man-wool-suit_613910-16049.jpg?_wi=3",
imageAlt: "music album cover vocal performance",
button: {
text: "Play All Tracks",
@@ -79,7 +79,7 @@ export default function AboutPage() {
description:
"Daniel's unique interpretation of the classic 4 Non Blondes hit",
imageSrc:
"http://img.b2bpic.net/free-photo/artistic-woman_23-2147781679.jpg",
"http://img.b2bpic.net/free-photo/artistic-woman_23-2147781679.jpg?_wi=3",
imageAlt: "musician singing microphone performance",
button: {
text: "View Playlist",
@@ -91,7 +91,7 @@ export default function AboutPage() {
description:
"Explore Daniel's original songs and unreleased material",
imageSrc:
"http://img.b2bpic.net/free-photo/control-room-desk-equipped-with-motorized-faders-amplifier_482257-124486.jpg",
"http://img.b2bpic.net/free-photo/control-room-desk-equipped-with-motorized-faders-amplifier_482257-124486.jpg?_wi=3",
imageAlt: "music composition original songs",
button: {
text: "Discover More",
@@ -120,7 +120,7 @@ export default function AboutPage() {
variant: "sparkles-gradient",
}}
useInvertedBackground={false}
imageSrc="http://img.b2bpic.net/free-photo/smiley-woman-playing-guitar-medium-shot_23-2149200005.jpg"
imageSrc="http://img.b2bpic.net/free-photo/smiley-woman-playing-guitar-medium-shot_23-2149200005.jpg?_wi=2"
imageAlt="musician performing on stage professional"
mediaAnimation="slide-up"
mediaPosition="right"

View File

@@ -49,7 +49,7 @@ export default function ContactPage() {
variant: "sparkles-gradient",
}}
useInvertedBackground={false}
imageSrc="http://img.b2bpic.net/free-photo/smiley-woman-playing-guitar-medium-shot_23-2149200005.jpg"
imageSrc="http://img.b2bpic.net/free-photo/smiley-woman-playing-guitar-medium-shot_23-2149200005.jpg?_wi=3"
imageAlt="musician performing on stage professional"
mediaAnimation="slide-up"
mediaPosition="right"
@@ -66,7 +66,7 @@ export default function ContactPage() {
title: "Email",
description: "Contact Daniel for inquiries and collaboration opportunities",
imageSrc:
"http://img.b2bpic.net/free-photo/close-up-portrait-bearded-smiling-black-man-wool-suit_613910-16049.jpg",
"http://img.b2bpic.net/free-photo/close-up-portrait-bearded-smiling-black-man-wool-suit_613910-16049.jpg?_wi=4",
imageAlt: "email contact",
button: {
text: "Send Email",
@@ -77,7 +77,7 @@ export default function ContactPage() {
title: "Social Media",
description: "Follow Daniel on his social media channels for latest updates",
imageSrc:
"http://img.b2bpic.net/free-photo/artistic-woman_23-2147781679.jpg",
"http://img.b2bpic.net/free-photo/artistic-woman_23-2147781679.jpg?_wi=4",
imageAlt: "social media",
button: {
text: "Follow @ddanielofficial_",
@@ -88,7 +88,7 @@ export default function ContactPage() {
title: "Booking Inquiries",
description: "Professional inquiries for events, performances, and collaborations",
imageSrc:
"http://img.b2bpic.net/free-photo/control-room-desk-equipped-with-motorized-faders-amplifier_482257-124486.jpg",
"http://img.b2bpic.net/free-photo/control-room-desk-equipped-with-motorized-faders-amplifier_482257-124486.jpg?_wi=4",
imageAlt: "booking",
button: {
text: "Book Now",

View File

@@ -1,24 +1,58 @@
import type { Metadata } from "next";
import { Halant } from "next/font/google";
import { Inter } from "next/font/google";
import { Source_Sans_3 } 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 { Source_Sans_3 } 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 sourceSans3 = Source_Sans_3({
variable: "--font-source-sans-3",
subsets: ["latin"],
});
export const metadata: Metadata = {
title: "Daniel Azizov - Singer & Performer",
description: "Official website of Daniel Azizov, young singer and Ovoz Bolalar contestant. Listen to music, watch performances, and book tickets for live shows.",
keywords: "Daniel Azizov, singer, Uzbekistan, vocal artist, Ovoz Bolalar, music performances",
robots: {
index: true,
follow: true,
},
openGraph: {
title: "Daniel Azizov - Singer & Performer",
description: "Discover the music and performances of Daniel Azizov, a talented young vocalist from Uzbekistan.",
type: "website",
siteName: "Daniel Azizov",
images: [
{
url: "http://img.b2bpic.net/free-vector/music-festival-background-flat-style_23-2147781208.jpg",
alt: "Daniel Azizov - Stage Performance",
},
],
},
twitter: {
card: "summary_large_image",
title: "Daniel Azizov - Singer & Performer",
description: "Listen to Daniel's music, watch live performances, and book tickets.",
images: [
"http://img.b2bpic.net/free-vector/music-festival-background-flat-style_23-2147781208.jpg",
],
},
};
export default function RootLayout({
children,
}: Readonly<{
@@ -27,7 +61,9 @@ export default function RootLayout({
return (
<html lang="en" suppressHydrationWarning>
<ServiceWrapper>
<body className={`${sourceSans3.variable} antialiased`}>
<body
className={`${halant.variable} ${inter.variable} ${sourceSans3.variable} antialiased`}
>
<Tag />
{children}
<script
@@ -39,4 +75,4 @@ export default function RootLayout({
</ServiceWrapper>
</html>
);
}
}

View File

@@ -44,7 +44,7 @@ export default function MusicPage() {
title: "Ovoz Bolalar",
description:
"A powerful rendition showcasing vocal range and emotional performance. This is Daniel's award-winning performance that made him famous throughout Central Asia.",
imageSrc: "http://img.b2bpic.net/free-photo/close-up-portrait-bearded-smiling-black-man-wool-suit_613910-16049.jpg",
imageSrc: "http://img.b2bpic.net/free-photo/close-up-portrait-bearded-smiling-black-man-wool-suit_613910-16049.jpg?_wi=2",
button: {
text: "Listen Now",
href: "/music",
@@ -54,7 +54,7 @@ export default function MusicPage() {
title: "What's Up (Cover)",
description:
"Daniel's unique interpretation of the classic 4 Non Blondes hit, bringing fresh energy to this beloved rock anthem with his distinctive vocal style.",
imageSrc: "http://img.b2bpic.net/free-photo/artistic-woman_23-2147781679.jpg",
imageSrc: "http://img.b2bpic.net/free-photo/artistic-woman_23-2147781679.jpg?_wi=2",
button: {
text: "Stream Track",
href: "/music",
@@ -64,7 +64,7 @@ export default function MusicPage() {
title: "Original Compositions",
description:
"Explore Daniel's original songs and unreleased material, featuring his personal songwriting and creative vision as a contemporary artist.",
imageSrc: "http://img.b2bpic.net/free-photo/control-room-desk-equipped-with-motorized-faders-amplifier_482257-124486.jpg",
imageSrc: "http://img.b2bpic.net/free-photo/control-room-desk-equipped-with-motorized-faders-amplifier_482257-124486.jpg?_wi=2",
button: {
text: "Play Collection",
href: "/music",
@@ -74,7 +74,7 @@ export default function MusicPage() {
title: "Acoustic Sessions",
description:
"Intimate acoustic performances showcasing Daniel's vocal control and emotional depth in stripped-down arrangements.",
imageSrc: "http://img.b2bpic.net/free-photo/musicial-music-live-band-performing-stage-with-different-lights_627829-10059.jpg",
imageSrc: "http://img.b2bpic.net/free-photo/musicial-music-live-band-performing-stage-with-different-lights_627829-10059.jpg?_wi=1",
button: {
text: "Explore Sessions",
href: "/music",
@@ -84,7 +84,7 @@ export default function MusicPage() {
title: "Collaboration Features",
description:
"Special collaborative tracks featuring Daniel with other artists and musicians from around the world.",
imageSrc: "http://img.b2bpic.net/free-photo/medium-shot-man-stage-with-microphone_23-2149215618.jpg",
imageSrc: "http://img.b2bpic.net/free-photo/medium-shot-man-stage-with-microphone_23-2149215618.jpg?_wi=1",
button: {
text: "Hear Features",
href: "/music",
@@ -94,7 +94,7 @@ export default function MusicPage() {
title: "Live Studio Recordings",
description:
"Professional studio recordings of Daniel's live performances captured in high-quality audio production.",
imageSrc: "http://img.b2bpic.net/free-photo/unrecognizable-person-photographing-with-smart-phone-stage-performers-music-festival_637285-575.jpg",
imageSrc: "http://img.b2bpic.net/free-photo/unrecognizable-person-photographing-with-smart-phone-stage-performers-music-festival_637285-575.jpg?_wi=1",
button: {
text: "Hear Live",
href: "/music",
@@ -120,7 +120,7 @@ export default function MusicPage() {
title: "Ovoz Bolalar - Live Performance",
excerpt:
"Daniel's winning performance from Ovoz Bolalar vocal competition that launched his music career.",
imageSrc: "http://img.b2bpic.net/free-photo/musicial-music-live-band-performing-stage-with-different-lights_627829-10059.jpg",
imageSrc: "http://img.b2bpic.net/free-photo/musicial-music-live-band-performing-stage-with-different-lights_627829-10059.jpg?_wi=2",
authorName: "Daniel Azizov",
authorAvatar: "http://img.b2bpic.net/free-photo/medium-shot-man-creating-van-gogh-s-characterization_23-2149736182.jpg",
date: "2024",
@@ -131,7 +131,7 @@ export default function MusicPage() {
title: "What's Up - 4 Non Blondes Cover",
excerpt:
"An energetic cover performance showcasing Daniel's vocal versatility and rock music interpretation.",
imageSrc: "http://img.b2bpic.net/free-photo/medium-shot-man-stage-with-microphone_23-2149215618.jpg",
imageSrc: "http://img.b2bpic.net/free-photo/medium-shot-man-stage-with-microphone_23-2149215618.jpg?_wi=2",
authorName: "Daniel Azizov",
authorAvatar: "http://img.b2bpic.net/free-photo/medium-shot-man-creating-van-gogh-s-characterization_23-2149736182.jpg",
date: "2024",

View File

@@ -89,7 +89,7 @@ export default function HomePage() {
title: "Ovoz Bolalar",
description:
"A powerful rendition showcasing vocal range and emotional performance",
imageSrc: "http://img.b2bpic.net/free-photo/close-up-portrait-bearded-smiling-black-man-wool-suit_613910-16049.jpg",
imageSrc: "http://img.b2bpic.net/free-photo/close-up-portrait-bearded-smiling-black-man-wool-suit_613910-16049.jpg?_wi=1",
button: {
text: "Play All Tracks",
href: "/music",
@@ -99,7 +99,7 @@ export default function HomePage() {
title: "What's Up (Cover)",
description:
"Daniel's unique interpretation of the classic 4 Non Blondes hit",
imageSrc: "http://img.b2bpic.net/free-photo/artistic-woman_23-2147781679.jpg",
imageSrc: "http://img.b2bpic.net/free-photo/artistic-woman_23-2147781679.jpg?_wi=1",
button: {
text: "View Playlist",
href: "/music",
@@ -109,7 +109,7 @@ export default function HomePage() {
title: "Original Compositions",
description:
"Explore Daniel's original songs and unreleased material",
imageSrc: "http://img.b2bpic.net/free-photo/control-room-desk-equipped-with-motorized-faders-amplifier_482257-124486.jpg",
imageSrc: "http://img.b2bpic.net/free-photo/control-room-desk-equipped-with-motorized-faders-amplifier_482257-124486.jpg?_wi=1",
button: {
text: "Discover More",
href: "/music",
@@ -134,7 +134,7 @@ export default function HomePage() {
description="For booking inquiries, collaboration opportunities, or general questions, reach out through email or social media."
background={{ variant: "sparkles-gradient" }}
useInvertedBackground={false}
imageSrc="http://img.b2bpic.net/free-photo/smiley-woman-playing-guitar-medium-shot_23-2149200005.jpg"
imageSrc="http://img.b2bpic.net/free-photo/smiley-woman-playing-guitar-medium-shot_23-2149200005.jpg?_wi=1"
imageAlt="Daniel Azizov performing"
mediaAnimation="slide-up"
mediaPosition="right"

View File

@@ -46,7 +46,7 @@ export default function VideosPage() {
category: "Performance",
title: "Ovoz Bolalar - Live Performance",
excerpt: "Daniel's winning performance from Ovoz Bolalar vocal competition",
imageSrc: "http://img.b2bpic.net/free-photo/musicial-music-live-band-performing-stage-with-different-lights_627829-10059.jpg",
imageSrc: "http://img.b2bpic.net/free-photo/musicial-music-live-band-performing-stage-with-different-lights_627829-10059.jpg?_wi=3",
imageAlt: "vocal competition performance young singer",
authorName: "Daniel Azizov",
authorAvatar: "http://img.b2bpic.net/free-photo/medium-shot-man-creating-van-gogh-s-characterization_23-2149736182.jpg",
@@ -57,7 +57,7 @@ export default function VideosPage() {
category: "Cover",
title: "What's Up - 4 Non Blondes Cover",
excerpt: "An energetic cover performance showcasing vocal versatility",
imageSrc: "http://img.b2bpic.net/free-photo/medium-shot-man-stage-with-microphone_23-2149215618.jpg",
imageSrc: "http://img.b2bpic.net/free-photo/medium-shot-man-stage-with-microphone_23-2149215618.jpg?_wi=3",
imageAlt: "cover song performance microphone",
authorName: "Daniel Azizov",
authorAvatar: "http://img.b2bpic.net/free-photo/medium-shot-man-creating-van-gogh-s-characterization_23-2149736182.jpg",
@@ -68,7 +68,7 @@ export default function VideosPage() {
category: "International",
title: "Performance in Dubai",
excerpt: "Daniel's international performance at the UAE music festival",
imageSrc: "http://img.b2bpic.net/free-photo/unrecognizable-person-photographing-with-smart-phone-stage-performers-music-festival_637285-575.jpg",
imageSrc: "http://img.b2bpic.net/free-photo/unrecognizable-person-photographing-with-smart-phone-stage-performers-music-festival_637285-575.jpg?_wi=2",
imageAlt: "international music festival performance",
authorName: "Daniel Azizov",
authorAvatar: "http://img.b2bpic.net/free-photo/medium-shot-man-creating-van-gogh-s-characterization_23-2149736182.jpg",