Compare commits
12 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
| c5d90c7a8a | |||
| be0ba1dafc | |||
| cc6bb63bad | |||
| 19e30acec5 | |||
| 4f31f40fae | |||
| 9237c9063b | |||
| 5c0341f225 | |||
| ea817b5f7b | |||
| cd6b245ede | |||
| 06b0a33720 | |||
| c189255e51 | |||
| 4020882592 |
@@ -11,28 +11,20 @@ import { Libre_Baskerville } from "next/font/google";
|
||||
|
||||
|
||||
export const metadata: Metadata = {
|
||||
title: 'Waqas Dubai Wala Mobile - Your #1 Mobile Shop in Dubai',
|
||||
description: 'Discover the latest smartphones and accessories from top brands at Waqas Dubai Wala Mobile. Best prices, genuine products, and expert service in Dubai.',
|
||||
keywords: ["Waqas Dubai Wala, mobile, phones, Dubai, smartphones, accessories, best price, genuine products, iPhone, Samsung, Xiaomi, phone repair"],
|
||||
title: 'Waqas Dubai Wala - Your Premier Mobile Shop',
|
||||
description: 'Waqas Dubai Wala offers the latest mobile phones, accessories, and top-tier repair services in Dubai. Discover genuine products and exceptional customer service.',
|
||||
keywords: ["Waqas Dubai Wala, mobile shop, Dubai, smartphones, phone accessories, mobile repair, latest phones, genuine mobile products"],
|
||||
openGraph: {
|
||||
"title": "Waqas Dubai Wala Mobile - Your #1 Mobile Shop in Dubai",
|
||||
"description": "Discover the latest smartphones and accessories from top brands at Waqas Dubai Wala Mobile. Best prices, genuine products, and expert service in Dubai.",
|
||||
"url": "https://waqasdubaiwala.com",
|
||||
"siteName": "Waqas Dubai Wala Mobile",
|
||||
"images": [
|
||||
"title": "Waqas Dubai Wala - Your Premier Mobile Shop", "description": "Waqas Dubai Wala offers the latest mobile phones, accessories, and top-tier repair services in Dubai. Discover genuine products and exceptional customer service.", "url": "https://waqasdubaiwala.com", "siteName": "Waqas Dubai Wala", "images": [
|
||||
{
|
||||
"url": "http://img.b2bpic.net/free-photo/young-female-holding-smartphone-black-singlet-looking-cheery_176474-12901.jpg",
|
||||
"alt": "Sleek modern smartphone"
|
||||
"url": "http://img.b2bpic.net/free-photo/modern-smartphone-with-blank-screen-on-dark-background_23-2148293961.jpg?_wi=1", "alt": "Waqas Dubai Wala mobile shop"
|
||||
}
|
||||
],
|
||||
"type": "website"
|
||||
},
|
||||
twitter: {
|
||||
"card": "summary_large_image",
|
||||
"title": "Waqas Dubai Wala Mobile - Your #1 Mobile Shop in Dubai",
|
||||
"description": "Discover the latest smartphones and accessories from top brands at Waqas Dubai Wala Mobile. Best prices, genuine products, and expert service in Dubai.",
|
||||
"images": [
|
||||
"http://img.b2bpic.net/free-photo/young-female-holding-smartphone-black-singlet-looking-cheery_176474-12901.jpg"
|
||||
"card": "summary_large_image", "title": "Waqas Dubai Wala - Your Premier Mobile Shop", "description": "Waqas Dubai Wala offers the latest mobile phones, accessories, and top-tier repair services in Dubai. Discover genuine products and exceptional customer service.", "images": [
|
||||
"http://img.b2bpic.net/free-photo/modern-smartphone-with-blank-screen-on-dark-background_23-2148293961.jpg?_wi=1"
|
||||
]
|
||||
},
|
||||
robots: {
|
||||
@@ -42,13 +34,11 @@ export const metadata: Metadata = {
|
||||
};
|
||||
|
||||
const libreBaskerville = Libre_Baskerville({
|
||||
variable: "--font-libre-baskerville",
|
||||
subsets: ["latin"],
|
||||
variable: "--font-libre-baskerville", subsets: ["latin"],
|
||||
weight: ["400", "700"],
|
||||
});
|
||||
const inter = Inter({
|
||||
variable: "--font-inter",
|
||||
subsets: ["latin"],
|
||||
variable: "--font-inter", subsets: ["latin"],
|
||||
});
|
||||
|
||||
export default function RootLayout({
|
||||
@@ -71,4 +61,4 @@ export default function RootLayout({
|
||||
</ServiceWrapper>
|
||||
</html>
|
||||
);
|
||||
}
|
||||
}
|
||||
103
src/app/page.tsx
103
src/app/page.tsx
@@ -5,15 +5,15 @@ import ReactLenis from "lenis/react";
|
||||
import AboutMetric from '@/components/sections/about/AboutMetric';
|
||||
import ContactSplitForm from '@/components/sections/contact/ContactSplitForm';
|
||||
import FeatureCardSeven from '@/components/sections/feature/FeatureCardSeven';
|
||||
import FooterCard from '@/components/sections/footer/FooterCard';
|
||||
import FooterBaseCard from '@/components/sections/footer/FooterBaseCard';
|
||||
import HeroSplitTestimonial from '@/components/sections/hero/HeroSplitTestimonial';
|
||||
import MetricCardSeven from '@/components/sections/metrics/MetricCardSeven';
|
||||
import NavbarStyleCentered from '@/components/navbar/NavbarStyleCentered/NavbarStyleCentered';
|
||||
import PricingCardNine from '@/components/sections/pricing/PricingCardNine';
|
||||
import ProductCardTwo from '@/components/sections/product/ProductCardTwo';
|
||||
import SocialProofOne from '@/components/sections/socialProof/SocialProofOne';
|
||||
import TestimonialCardFifteen from '@/components/sections/testimonial/TestimonialCardFifteen';
|
||||
import { Facebook, Gauge, Heart, Instagram, LifeBuoy, ShieldCheck, Smartphone, Tag, Truck } from "lucide-react";
|
||||
import TestimonialCardThirteen from '@/components/sections/testimonial/TestimonialCardThirteen';
|
||||
import { Gauge, Heart, LifeBuoy, ShieldCheck, Smartphone, Star, Tag, Truck } from "lucide-react";
|
||||
|
||||
export default function LandingPage() {
|
||||
return (
|
||||
@@ -38,7 +38,7 @@ export default function LandingPage() {
|
||||
{
|
||||
name: "Products", id: "#products"},
|
||||
{
|
||||
name: "Features", id: "#features"},
|
||||
name: "Features", id: "#features"},
|
||||
{
|
||||
name: "Testimonials", id: "#testimonials"},
|
||||
{
|
||||
@@ -62,19 +62,19 @@ export default function LandingPage() {
|
||||
testimonials={[
|
||||
{
|
||||
name: "Ahmed Al-Mansoori", handle: "@AhmedTech", testimonial: "Waqas Dubai Wala delivers exceptional service and genuine products. My new phone is perfect!", rating: 5,
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/happy-girl-glasses-show-thumbs-up-looking-aside-good-logo-standing-satisfied-beige-backgrou_1258-163521.jpg", imageAlt: "Ahmed Al-Mansoori"},
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/happy-girl-glasses-show-thumbs-up-looking-aside-good-logo-standing-satisfied-beige-backgrou_1258-163521.jpg?_wi=1", imageAlt: "Ahmed Al-Mansoori"},
|
||||
{
|
||||
name: "Fatima Zahra", handle: "@FatimaMobile", testimonial: "Highly recommend for anyone in Dubai looking for reliable mobile deals. Fast delivery and great prices!", rating: 5,
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/supportive-cute-blond-girlfriend-cheering-liking-interesting-concept-cool-idea-thumbsup-smiling_1258-229592.jpg", imageAlt: "Fatima Zahra"},
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/supportive-cute-blond-girlfriend-cheering-liking-interesting-concept-cool-idea-thumbsup-smiling_1258-229592.jpg?_wi=1", imageAlt: "Fatima Zahra"},
|
||||
{
|
||||
name: "Omar Saeed", handle: "@OmarGadgets", testimonial: "Bought multiple phones here, always a smooth experience. Their customer support is fantastic.", rating: 5,
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/salesman-using-green-screen-tablet-present-car-addons-options-clients_482257-118380.jpg", imageAlt: "Omar Saeed"},
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/salesman-using-green-screen-tablet-present-car-addons-options-clients_482257-118380.jpg?_wi=1", imageAlt: "Omar Saeed"},
|
||||
{
|
||||
name: "Layla Khan", handle: "@LaylaReview", testimonial: "Best place for new phones and accessories in Dubai. Quality products and trustworthy service. A must-visit!", rating: 5,
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/5-star-customer-review_23-2151952994.jpg", imageAlt: "Layla Khan"},
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/5-star-customer-review_23-2151952994.jpg?_wi=1", imageAlt: "Layla Khan"},
|
||||
{
|
||||
name: "Tariq Ali", handle: "@Tariq_Tech", testimonial: "From selection to delivery, everything was seamless. I'm very satisfied with my purchase and the overall experience.", rating: 5,
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/customer-experience-creative-collage_23-2149346510.jpg", imageAlt: "Tariq Ali"},
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/customer-experience-creative-collage_23-2149346510.jpg?_wi=1", imageAlt: "Tariq Ali"},
|
||||
]}
|
||||
testimonialRotationInterval={5000}
|
||||
buttons={[
|
||||
@@ -87,7 +87,7 @@ export default function LandingPage() {
|
||||
{
|
||||
src: "http://img.b2bpic.net/free-photo/portrait-beautiful-afro-american-woman_23-2148332136.jpg", alt: "Ahmed Al-Mansoori"},
|
||||
{
|
||||
src: "http://img.b2bpic.net/free-photo/close-up-portrait-tired-african-male-model-with-big-headphones-standing-near-restaurant-outdoor-photo-good-looking-confident-man-with-dark-skin_197531-21796.jpg", alt: "Fatima Zahra"},
|
||||
src: "http://img.b2bpic.net/free-photo/close-up-tired-african-male-model-with-big-headphones-standing-near-restaurant-outdoor-photo-good-looking-confident-man-with-dark-skin_197531-21796.jpg", alt: "Fatima Zahra"},
|
||||
{
|
||||
src: "http://img.b2bpic.net/free-photo/close-up-smiley-man-salon_23-2149220534.jpg", alt: "Omar Saeed"},
|
||||
{
|
||||
@@ -239,31 +239,46 @@ export default function LandingPage() {
|
||||
"Global Leaders", "Local Favorites", "Emerging Innovators"],
|
||||
},
|
||||
]}
|
||||
title="Our Impact & Success"
|
||||
description="Building trust and connecting lives, one mobile at a time. Our numbers speak for themselves."
|
||||
title="Trusted by Thousands, Proven by Numbers"
|
||||
description="Our commitment to quality and customer satisfaction is reflected in our robust performance and the loyalty of our community. Explore the metrics that define our success."
|
||||
/>
|
||||
</div>
|
||||
|
||||
<div id="testimonials" data-section="testimonials">
|
||||
<TestimonialCardFifteen
|
||||
<TestimonialCardThirteen
|
||||
useInvertedBackground={false}
|
||||
testimonial="Waqas Dubai Wala consistently exceeds expectations. Their mobile range is fantastic, and the support team is always ready to assist. It's the only place I trust for my phone needs in Dubai. Highly recommended for their transparency and customer-first approach!"
|
||||
rating={5}
|
||||
author="Dr. Amir Hassan, Tech Entrepreneur"
|
||||
avatars={[
|
||||
textboxLayout="default"
|
||||
title="What Our Happy Customers Say"
|
||||
description="Hear directly from the community that makes Waqas Dubai Wala Mobile their first choice for all mobile needs. Your trust is our greatest achievement."
|
||||
testimonials={[
|
||||
{
|
||||
src: "http://img.b2bpic.net/free-photo/close-up-competitive-employee_1098-2870.jpg", alt: "Dr. Amir Hassan"},
|
||||
id: "testimonial-1", name: "Ahmed Al-Mansoori", handle: "@AhmedTech", testimonial: "Waqas Dubai Wala delivers exceptional service and genuine products. My new phone is perfect!", rating: 5,
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/happy-girl-glasses-show-thumbs-up-looking-aside-good-logo-standing-satisfied-beige-backgrou_1258-163521.jpg?_wi=2", imageAlt: "Ahmed Al-Mansoori"
|
||||
},
|
||||
{
|
||||
src: "http://img.b2bpic.net/free-photo/medium-shot-woman-posing-outdoors_23-2150188348.jpg", alt: "Sarah Ahmed"},
|
||||
id: "testimonial-2", name: "Fatima Zahra", handle: "@FatimaMobile", testimonial: "Highly recommend for anyone in Dubai looking for reliable mobile deals. Fast delivery and great prices!", rating: 5,
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/supportive-cute-blond-girlfriend-cheering-liking-interesting-concept-cool-idea-thumbsup-smiling_1258-229592.jpg?_wi=2", imageAlt: "Fatima Zahra"
|
||||
},
|
||||
{
|
||||
src: "http://img.b2bpic.net/free-photo/portrait-young-business-man-posing-with-crossed-arms_23-2149206526.jpg", alt: "Khaled bin Rashid"},
|
||||
id: "testimonial-3", name: "Omar Saeed", handle: "@OmarGadgets", testimonial: "Bought multiple phones here, always a smooth experience. Their customer support is fantastic.", rating: 5,
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/salesman-using-green-screen-tablet-present-car-addons-options-clients_482257-118380.jpg?_wi=2", imageAlt: "Omar Saeed"
|
||||
},
|
||||
{
|
||||
src: "http://img.b2bpic.net/free-photo/young-beautiful-woman-with-curly-hair-isolated_273609-48109.jpg", alt: "Aisha Omar"},
|
||||
id: "testimonial-4", name: "Layla Khan", handle: "@LaylaReview", testimonial: "Best place for new phones and accessories in Dubai. Quality products and trustworthy service. A must-visit!", rating: 5,
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/5-star-customer-review_23-2151952994.jpg?_wi=2", imageAlt: "Layla Khan"
|
||||
},
|
||||
{
|
||||
src: "http://img.b2bpic.net/free-photo/handsome-business-man-wearing-suit-looking-camera-smiling-broadly-with-happy-face-standing-white-background_141793-54115.jpg", alt: "Handsome business man wearing suit looking at camera smiling broadly with happy face standing over white background"},
|
||||
id: "testimonial-5", name: "Tariq Ali", handle: "@Tariq_Tech", testimonial: "From selection to delivery, everything was seamless. I'm very satisfied with my purchase and the overall experience.", rating: 5,
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/customer-experience-creative-collage_23-2149346510.jpg?_wi=2", imageAlt: "Tariq Ali"
|
||||
},
|
||||
{
|
||||
id: "testimonial-6", name: "Dr. Amir Hassan", handle: "@DrAmirHassan", testimonial: "Waqas Dubai Wala consistently exceeds expectations. Their mobile range is fantastic, and the support team is always ready to assist. It's the only place I trust for my phone needs in Dubai. Highly recommended for their transparency and customer-first approach!", rating: 5,
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/close-up-competitive-employee_1098-2870.jpg", imageAlt: "Dr. Amir Hassan"
|
||||
},
|
||||
]}
|
||||
ratingAnimation="slide-up"
|
||||
avatarsAnimation="slide-up"
|
||||
showRating={true}
|
||||
animationType="slide-up"
|
||||
carouselMode="buttons"
|
||||
/>
|
||||
</div>
|
||||
|
||||
@@ -273,8 +288,8 @@ export default function LandingPage() {
|
||||
useInvertedBackground={true}
|
||||
names={[
|
||||
"Samsung", "Apple", "Xiaomi", "Huawei", "Oppo", "Vivo", "Realme", "OnePlus", "Google Pixel", "Infinix"]}
|
||||
title="Partnering with Industry Leaders"
|
||||
description="We are proud to offer products from the world's most innovative and trusted mobile brands, ensuring quality and variety for our customers."
|
||||
title="Trusted Partnerships, Unbeatable Quality"
|
||||
description="We proudly collaborate with the industry's leading mobile brands to bring you the best selection of genuine devices and the latest innovations."
|
||||
speed={35}
|
||||
showCard={true}
|
||||
/>
|
||||
@@ -283,8 +298,8 @@ export default function LandingPage() {
|
||||
<div id="contact" data-section="contact">
|
||||
<ContactSplitForm
|
||||
useInvertedBackground={false}
|
||||
title="Get in Touch"
|
||||
description="Have a question about a product, need support, or looking for a specific model? Reach out to us using the form below, and we'll get back to you promptly."
|
||||
title="Ready to Upgrade? Contact Us!"
|
||||
description="Have a specific question about a phone, need technical support, or want a custom quote? Fill out the form below, and our team will provide prompt and expert assistance to help you make the right choice."
|
||||
inputs={[
|
||||
{
|
||||
name: "name", type: "text", placeholder: "Your Name", required: true,
|
||||
@@ -297,7 +312,7 @@ export default function LandingPage() {
|
||||
},
|
||||
]}
|
||||
textarea={{
|
||||
name: "message", placeholder: "Your Message", rows: 4,
|
||||
name: "message", placeholder: "Tell us how we can help you today!", rows: 4,
|
||||
required: true,
|
||||
}}
|
||||
imageSrc="http://img.b2bpic.net/free-photo/smiling-young-bald-call-center-man-wearing-headset-sitting-desk-with-work-tools-looking-side-talking-phone-isolated-white-wall_141793-94402.jpg"
|
||||
@@ -309,22 +324,34 @@ export default function LandingPage() {
|
||||
</div>
|
||||
|
||||
<div id="footer" data-section="footer">
|
||||
<FooterCard
|
||||
<FooterBaseCard
|
||||
logoSrc="https://webuild-dev.s3.eu-north-1.amazonaws.com/default/no-image.jpg?id=5n5jtt"
|
||||
logoAlt="Waqas Dubai Wala Mobile logo"
|
||||
logoText="Waqas Dubai Wala Mobile"
|
||||
copyrightText="© 2024 Waqas Dubai Wala Mobile. All rights reserved."
|
||||
socialLinks={[
|
||||
columns={[
|
||||
{
|
||||
icon: Facebook,
|
||||
href: "https://facebook.com/WaqasDubaiWalaMobile", ariaLabel: "Facebook"},
|
||||
title: "Shop", items: [
|
||||
{ label: "Home", href: "#home" },
|
||||
{ label: "Products", href: "#products" },
|
||||
{ label: "Features", href: "#features" }
|
||||
]
|
||||
},
|
||||
{
|
||||
icon: Instagram,
|
||||
href: "https://instagram.com/WaqasDubaiWalaMobile", ariaLabel: "Instagram"},
|
||||
title: "Company", items: [
|
||||
{ label: "About Us", href: "#about" },
|
||||
{ label: "Customer Reviews", href: "#testimonials" }
|
||||
]
|
||||
},
|
||||
{
|
||||
icon: Smartphone,
|
||||
href: "https://wa.me/971501234567", ariaLabel: "WhatsApp"},
|
||||
title: "Support", items: [
|
||||
{ label: "Contact Us", href: "#contact" },
|
||||
{ label: "Service Plans", href: "#pricing" },
|
||||
{ label: "Privacy Policy", href: "#footer" }
|
||||
]
|
||||
}
|
||||
]}
|
||||
copyrightText="© 2024 Waqas Dubai Wala Mobile. All rights reserved."
|
||||
onPrivacyClick={() => alert('Privacy Policy details coming soon!')}
|
||||
/>
|
||||
</div>
|
||||
</ReactLenis>
|
||||
|
||||
Reference in New Issue
Block a user