Merge version_3 into main #5
@@ -1,8 +1,14 @@
|
||||
import type { Metadata } from "next";
|
||||
import { Inter } from "next/font/google";
|
||||
import { Geist, Geist_Mono } from "next/font/google";
|
||||
import "./globals.css";
|
||||
|
||||
const inter = Inter({ subsets: ["latin"] });
|
||||
const geist = Geist({
|
||||
variable: "--font-geist-sans", subsets: ["latin"],
|
||||
});
|
||||
|
||||
const geistMono = Geist_Mono({
|
||||
variable: "--font-geist-mono", subsets: ["latin"],
|
||||
});
|
||||
|
||||
export const metadata: Metadata = {
|
||||
title: "Create Next App", description: "Generated by create next app"};
|
||||
@@ -14,7 +20,9 @@ export default function RootLayout({
|
||||
}) {
|
||||
return (
|
||||
<html lang="en">
|
||||
<body className={inter.className}>{children}
|
||||
<body className={`${geist.variable} ${geistMono.variable} antialiased`}>
|
||||
{children}
|
||||
|
||||
<script
|
||||
dangerouslySetInnerHTML={{
|
||||
__html: `
|
||||
|
||||
@@ -9,7 +9,7 @@ import ProductCardThree from '@/components/sections/product/ProductCardThree';
|
||||
import BlogCardTwo from '@/components/sections/blog/BlogCardTwo';
|
||||
import ContactCTA from '@/components/sections/contact/ContactCTA';
|
||||
import FooterCard from '@/components/sections/footer/FooterCard';
|
||||
import { Code, Users, Award, Globe, Sparkles, Briefcase, Mail, BookOpen, ShoppingCart, BarChart3, Settings, Database, Lock, Palette, Smartphone, Zap, Layers, Github, Linkedin, MessageSquare, Heart } from 'lucide-react';
|
||||
import { Code, Users, Award, Globe, Sparkles, Briefcase, Mail, BookOpen, ShoppingCart, BarChart3, Settings, Database, Lock, Palette, Smartphone, Zap, Layers, Github, Linkedin, MessageSquare, ArrowRight } from 'lucide-react';
|
||||
|
||||
export default function LandingPage() {
|
||||
return (
|
||||
@@ -76,7 +76,7 @@ export default function LandingPage() {
|
||||
{ icon: Code, label: "Tugallangan Loyihalar", value: "50+" },
|
||||
{ icon: Users, label: "O'quvchilar va Hamkorlar", value: "100+" },
|
||||
{ icon: Award, label: "Tajriba Yillari", value: "5+" },
|
||||
{ icon: Heart, label: "Hamjamiyat Qoniqarsi", value: "98%" }
|
||||
{ icon: Globe, label: "React Projects", value: "30+" }
|
||||
]}
|
||||
metricsAnimation="slide-up"
|
||||
useInvertedBackground={true}
|
||||
@@ -209,11 +209,10 @@ export default function LandingPage() {
|
||||
tag="Bog'lanish"
|
||||
tagIcon={Mail}
|
||||
tagAnimation="slide-up"
|
||||
title="Murojaat Qiling va Loyihani Boshlaylik"
|
||||
description="Sizning web-sayt yoki application loyihasi haqida gaplashishga tayyor. Qisqa vaqt ichida siz bilan bog'lanamiz va tafsil bilan majburiyatlarni muhokama qilamiz."
|
||||
title="Loyihangizni Boshlaylik"
|
||||
description="Qisqa vaqt ichida siz bilan bog'lanamiz va tafsil bilan majburiyatlarni muhokama qilamiz."
|
||||
buttons={[
|
||||
{ text: "Email: hasanboyleo97@gmail.com", href: "mailto:hasanboyleo97@gmail.com" },
|
||||
{ text: "Telefon: +998 88 371 52 71", href: "tel:+998883715271" }
|
||||
{ text: "Loyihani Boshlash", href: "mailto:hasanboyleo97@gmail.com" }
|
||||
]}
|
||||
buttonAnimation="slide-up"
|
||||
background={{ variant: "plain" }}
|
||||
@@ -224,7 +223,7 @@ export default function LandingPage() {
|
||||
<div id="footer" data-section="footer">
|
||||
<FooterCard
|
||||
logoText="Hasanboy"
|
||||
copyrightText="© 2025 Hasanboy. Barcha huquqlar himoyalangan."
|
||||
copyrightText="© 2025 Hasanboy. Barcha huquqlar himoyalangan. Email: hasanboyleo97@gmail.com | Telefon: +998 88 371 52 71"
|
||||
socialLinks={[
|
||||
{ icon: Github, href: "https://github.com", ariaLabel: "GitHub" },
|
||||
{ icon: Linkedin, href: "https://linkedin.com", ariaLabel: "LinkedIn" },
|
||||
|
||||
Reference in New Issue
Block a user