Compare commits
32 Commits
version_12
...
main
| Author | SHA1 | Date | |
|---|---|---|---|
| 64fbd89bac | |||
| b651eb3f64 | |||
| a8de81609c | |||
| 43be85cf34 | |||
| 3cb3c6d307 | |||
| 3f4db2cb8c | |||
| 217d450e59 | |||
| 18db534079 | |||
| cc1045064d | |||
| 9cec354fa8 | |||
| ec5746d6bf | |||
| 62ca7ff914 | |||
| 6c5a6a3915 | |||
| 7043ece654 | |||
| e5a6147b6b | |||
| 4d4ff6e0a0 | |||
| 7c01095ca9 | |||
| 72d3a51aeb | |||
| e57d3c3e94 | |||
| 1070bf740e | |||
| 556648f05e | |||
| f92f3e51f4 | |||
| 476ada74d9 | |||
| 0190e9d3e0 | |||
| 55b314aaa2 | |||
| d50e44645a | |||
| 06abe78f58 | |||
| 9be88da2b1 | |||
| 9610eb709a | |||
| 68f4a67133 | |||
| ea228313f7 | |||
| af56b4ac15 |
@@ -4,13 +4,13 @@
|
|||||||
/* Base units */
|
/* Base units */
|
||||||
/* --vw is set by ThemeProvider */
|
/* --vw is set by ThemeProvider */
|
||||||
|
|
||||||
--background: #ffffff;
|
--background: #000000;
|
||||||
--card: #fafafa;
|
--card: #1b1b1b;
|
||||||
--foreground: #000000;
|
--foreground: #ffffff;
|
||||||
--primary-cta: #ff0000;
|
--primary-cta: #ffcc00;
|
||||||
--secondary-cta: #ffffff;
|
--secondary-cta: #151515;
|
||||||
--accent: #e5e5e5;
|
--accent: #303030;
|
||||||
--background-accent: #f5f5f5;
|
--background-accent: #303030;
|
||||||
|
|
||||||
/* text sizing - set by ThemeProvider */
|
/* text sizing - set by ThemeProvider */
|
||||||
/* --text-2xs: clamp(0.465rem, 0.62vw, 0.62rem);
|
/* --text-2xs: clamp(0.465rem, 0.62vw, 0.62rem);
|
||||||
|
|||||||
@@ -1,59 +1,35 @@
|
|||||||
import type { Metadata } from "next";
|
import type { Metadata } from "next";
|
||||||
import { Inter } from "next/font/google";
|
import localFont from "next/font/local";
|
||||||
import "./globals.css";
|
import "./globals.css";
|
||||||
import { ServiceWrapper } from "@/components/ServiceWrapper";
|
|
||||||
import Tag from "@/tag/Tag";
|
|
||||||
|
|
||||||
const inter = Inter({
|
const geistSans = localFont({
|
||||||
variable: "--font-inter",
|
src: "./fonts/GeistVF.woff2",
|
||||||
subsets: ["latin"],
|
variable: "--font-geist-sans",
|
||||||
|
weight: "100 900",
|
||||||
|
});
|
||||||
|
const geistMono = localFont({
|
||||||
|
src: "./fonts/GeistMonoVF.woff2",
|
||||||
|
variable: "--font-geist-mono",
|
||||||
|
weight: "100 900",
|
||||||
});
|
});
|
||||||
|
|
||||||
export const metadata: Metadata = {
|
export const metadata: Metadata = {
|
||||||
title: "Star Wars Fans Community - Explore the Galaxy",
|
title: "Star Wars - Join the Galactic Saga",
|
||||||
description: "Join millions of Star Wars fans worldwide. Discover exclusive content, connect with the community, and celebrate the epic saga.",
|
description: "Explore the galaxy far, far away with millions of fans. Discover movies, characters, collectibles and more from the Star Wars universe.",
|
||||||
keywords: "Star Wars, fans, community, movies, series, Jedi, galaxy",
|
keywords: ["star wars", "movies", "collectibles", "lightsaber", "millennium falcon", "yoda", "force"]
|
||||||
metadataBase: new URL("https://starwarsfans.com"),
|
|
||||||
alternates: {
|
|
||||||
canonical: "https://starwarsfans.com"
|
|
||||||
},
|
|
||||||
openGraph: {
|
|
||||||
title: "Star Wars Fans Community",
|
|
||||||
description: "Join the Force. Connect with Star Wars fans, explore content, and celebrate the greatest saga.",
|
|
||||||
siteName: "STAR WARS",
|
|
||||||
type: "website",
|
|
||||||
images: [
|
|
||||||
{
|
|
||||||
url: "https://webuild-dev.s3.eu-north-1.amazonaws.com/gallery/uploaded-1766502905270-5whkj6nu.jpg",
|
|
||||||
alt: "Star Wars galaxy"
|
|
||||||
}
|
|
||||||
]
|
|
||||||
},
|
|
||||||
twitter: {
|
|
||||||
card: "summary_large_image",
|
|
||||||
title: "Star Wars Fans Community",
|
|
||||||
description: "Join millions of fans exploring the galaxy's greatest saga",
|
|
||||||
images: ["https://webuild-dev.s3.eu-north-1.amazonaws.com/gallery/uploaded-1766502905270-5whkj6nu.jpg"]
|
|
||||||
},
|
|
||||||
robots: {
|
|
||||||
index: true,
|
|
||||||
follow: true
|
|
||||||
}
|
|
||||||
};
|
};
|
||||||
|
|
||||||
export default function RootLayout({
|
export default function RootLayout({
|
||||||
children,
|
children,
|
||||||
}: Readonly<{
|
}: {
|
||||||
children: React.ReactNode;
|
children: React.ReactNode;
|
||||||
}>) {
|
}) {
|
||||||
return (
|
return (
|
||||||
<html lang="en" suppressHydrationWarning>
|
<html lang="en">
|
||||||
<ServiceWrapper>
|
<body
|
||||||
<body
|
className={`${geistSans.variable} ${geistMono.variable} antialiased`}
|
||||||
className={inter.variable}
|
>
|
||||||
>
|
{children}
|
||||||
<Tag />
|
|
||||||
{children}
|
|
||||||
|
|
||||||
<script
|
<script
|
||||||
dangerouslySetInnerHTML={{
|
dangerouslySetInnerHTML={{
|
||||||
@@ -1273,7 +1249,6 @@ export default function RootLayout({
|
|||||||
}}
|
}}
|
||||||
/>
|
/>
|
||||||
</body>
|
</body>
|
||||||
</ServiceWrapper>
|
|
||||||
</html>
|
</html>
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
290
src/app/page.tsx
290
src/app/page.tsx
@@ -1,6 +1,13 @@
|
|||||||
"use client";
|
"use client";
|
||||||
|
|
||||||
import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
|
import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
|
||||||
|
import HeroBillboardCarouselSplit from "@/components/sections/hero/HeroBillboardCarouselSplit";
|
||||||
|
import MetricCardThree from "@/components/sections/metrics/MetricCardThree";
|
||||||
|
import ParallaxAbout from "@/components/sections/about/ParallaxAbout";
|
||||||
|
import ContactSplitForm from "@/components/sections/contact/ContactSplitForm";
|
||||||
|
import ProductCardTwo from "@/components/sections/product/ProductCardTwo";
|
||||||
|
import FooterSocial from "@/components/sections/footer/FooterSocial";
|
||||||
|
import { Youtube, Twitter, Linkedin, Film, Users, Calendar } from "lucide-react";
|
||||||
|
|
||||||
export default function StarWarsPage() {
|
export default function StarWarsPage() {
|
||||||
return (
|
return (
|
||||||
@@ -17,165 +24,154 @@ export default function StarWarsPage() {
|
|||||||
headingFontWeight="extrabold"
|
headingFontWeight="extrabold"
|
||||||
>
|
>
|
||||||
<div id="hero" data-section="hero">
|
<div id="hero" data-section="hero">
|
||||||
<div className="min-h-screen flex items-center justify-center bg-gradient-to-b from-black to-gray-900 text-white">
|
<HeroBillboardCarouselSplit
|
||||||
<div className="text-center max-w-4xl px-6">
|
title="STAR WARS: Join millions of fans exploring the galaxy's greatest saga"
|
||||||
<h1 className="text-6xl font-extrabold mb-6 text-yellow-400">STAR WARS</h1>
|
mediaItems={[
|
||||||
<p className="text-xl mb-8 text-gray-300">Join millions of fans exploring the galaxy's greatest saga. Discover exclusive content, connect with the community, and celebrate the Force.</p>
|
{ imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/gallery/uploaded-1766502905270-5whkj6nu.jpg", imageAlt: "Star Wars galaxy 1" },
|
||||||
<div className="grid grid-cols-3 gap-8 mb-8">
|
{ imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/gallery/uploaded-1766502905270-5whkj6nu.jpg", imageAlt: "Star Wars galaxy 2" },
|
||||||
<div className="text-center">
|
{ imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/gallery/uploaded-1766502905270-5whkj6nu.jpg", imageAlt: "Star Wars galaxy 3" },
|
||||||
<div className="text-3xl font-bold text-yellow-400">40+</div>
|
{ imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/gallery/uploaded-1766502905270-5whkj6nu.jpg", imageAlt: "Star Wars galaxy 4" },
|
||||||
<div className="text-sm text-gray-400">Years of storytelling</div>
|
{ imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/gallery/uploaded-1766502905270-5whkj6nu.jpg", imageAlt: "Star Wars galaxy 5" },
|
||||||
</div>
|
{ imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/gallery/uploaded-1766502905270-5whkj6nu.jpg", imageAlt: "Star Wars galaxy 6" }
|
||||||
<div className="text-center">
|
]}
|
||||||
<div className="text-3xl font-bold text-yellow-400">11</div>
|
buttons={[{ text: "Join the Force", href: "contact" }]}
|
||||||
<div className="text-sm text-gray-400">Films in saga</div>
|
/>
|
||||||
</div>
|
|
||||||
<div className="text-center">
|
|
||||||
<div className="text-3xl font-bold text-yellow-400">100M+</div>
|
|
||||||
<div className="text-sm text-gray-400">Fans worldwide</div>
|
|
||||||
</div>
|
|
||||||
</div>
|
|
||||||
<button className="bg-yellow-400 text-black px-8 py-3 rounded-full font-semibold hover:bg-yellow-300 transition-colors">
|
|
||||||
Join the Force
|
|
||||||
</button>
|
|
||||||
</div>
|
|
||||||
</div>
|
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
<div id="metrics" data-section="metrics">
|
<div id="metrics" data-section="metrics">
|
||||||
<div className="py-16 bg-gray-900 text-white">
|
<MetricCardThree
|
||||||
<div className="max-w-6xl mx-auto px-6">
|
title="Our Galactic Impact"
|
||||||
<h2 className="text-4xl font-extrabold text-center mb-4">Our Galactic Impact</h2>
|
description="Experience the epic saga spanning decades of storytelling"
|
||||||
<p className="text-xl text-gray-300 text-center mb-12">Experience the epic saga spanning decades of storytelling</p>
|
metrics={[
|
||||||
<div className="grid grid-cols-3 gap-8">
|
{ id: "1", icon: Calendar, title: "Years", value: "40+" },
|
||||||
<div className="text-center p-6 bg-gray-800 rounded-lg">
|
{ id: "2", icon: Film, title: "Films", value: "11" },
|
||||||
<div className="text-4xl font-bold text-yellow-400 mb-2">40</div>
|
{ id: "3", icon: Users, title: "Fans", value: "100M+" }
|
||||||
<h3 className="text-xl font-semibold mb-2">Years</h3>
|
]}
|
||||||
<p className="text-gray-400">Of Star Wars storytelling</p>
|
gridVariant="uniform-all-items-equal"
|
||||||
<div className="mt-4 text-yellow-400">★★★★★ 4.8 (128)</div>
|
textboxLayout="default"
|
||||||
</div>
|
animationType="slide-up"
|
||||||
<div className="text-center p-6 bg-gray-800 rounded-lg">
|
useInvertedBackground="noInvert"
|
||||||
<div className="text-4xl font-bold text-yellow-400 mb-2">11</div>
|
/>
|
||||||
<h3 className="text-xl font-semibold mb-2">Films</h3>
|
</div>
|
||||||
<p className="text-gray-400">Complete Skywalker saga</p>
|
|
||||||
<div className="mt-4 text-yellow-400">★★★★★ 4.9 (256)</div>
|
<div id="products" data-section="products">
|
||||||
</div>
|
<ProductCardTwo
|
||||||
<div className="text-center p-6 bg-gray-800 rounded-lg">
|
title="Featured Products"
|
||||||
<div className="text-4xl font-bold text-yellow-400 mb-2">100M</div>
|
description="Explore our premium Star Wars collection with top-rated items"
|
||||||
<h3 className="text-xl font-semibold mb-2">Fans</h3>
|
tag="Best Sellers"
|
||||||
<p className="text-gray-400">Worldwide united by Force</p>
|
products={[
|
||||||
<div className="mt-4 text-yellow-400">★★★★☆ 4.7 (512)</div>
|
{
|
||||||
</div>
|
id: "1",
|
||||||
</div>
|
brand: "Lucasfilm Collectibles",
|
||||||
</div>
|
name: "Premium Lightsaber Replica",
|
||||||
</div>
|
price: "$199.99",
|
||||||
|
rating: 5,
|
||||||
|
reviewCount: "2.3k",
|
||||||
|
imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/gallery/uploaded-1766502905270-5whkj6nu.jpg",
|
||||||
|
imageAlt: "Premium Lightsaber Replica",
|
||||||
|
starColor: "#ff0000"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
id: "2",
|
||||||
|
brand: "Star Wars Universe",
|
||||||
|
name: "Millennium Falcon Model Kit",
|
||||||
|
price: "$149.99",
|
||||||
|
rating: 4,
|
||||||
|
reviewCount: "1.8k",
|
||||||
|
imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/gallery/uploaded-1766502905270-5whkj6nu.jpg",
|
||||||
|
imageAlt: "Millennium Falcon Model Kit",
|
||||||
|
starColor: "#ff0000"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
id: "3",
|
||||||
|
brand: "Force Masters",
|
||||||
|
name: "Yoda Statue Figurine",
|
||||||
|
price: "$89.99",
|
||||||
|
rating: 5,
|
||||||
|
reviewCount: "3.1k",
|
||||||
|
imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/gallery/uploaded-1766502905270-5whkj6nu.jpg",
|
||||||
|
imageAlt: "Yoda Statue Figurine",
|
||||||
|
starColor: "#ff0000"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
id: "4",
|
||||||
|
brand: "Imperial Design",
|
||||||
|
name: "Death Star Lamp",
|
||||||
|
price: "$129.99",
|
||||||
|
rating: 4,
|
||||||
|
reviewCount: "956",
|
||||||
|
imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/gallery/uploaded-1766502905270-5whkj6nu.jpg",
|
||||||
|
imageAlt: "Death Star Lamp",
|
||||||
|
starColor: "#ff0000"
|
||||||
|
}
|
||||||
|
]}
|
||||||
|
gridVariant="uniform-all-items-equal"
|
||||||
|
textboxLayout="default"
|
||||||
|
animationType="slide-up"
|
||||||
|
useInvertedBackground="noInvert"
|
||||||
|
/>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
<div id="about" data-section="about">
|
<div id="about" data-section="about">
|
||||||
<div className="py-16 bg-black text-white">
|
<ParallaxAbout
|
||||||
<div className="max-w-4xl mx-auto px-6 text-center">
|
title="Elevate Your Experience"
|
||||||
<h2 className="text-4xl font-extrabold mb-6">Elevate Your Experience</h2>
|
description="From Episode I through IX, experience the story of the Skywalker family and the eternal battle between light and dark sides of the Force."
|
||||||
<div className="space-y-6 text-lg text-gray-300">
|
imageSrc="https://webuild-dev.s3.eu-north-1.amazonaws.com/gallery/uploaded-1766502905270-5whkj6nu.jpg"
|
||||||
<p>Experience the epic saga spanning decades of storytelling across multiple eras and universes.</p>
|
imageAlt="Star Wars background"
|
||||||
<p>From Episode I through IX, experience the story of the Skywalker family and the eternal battle between light and dark sides of the Force.</p>
|
buttons={[{ text: "Discover More", href: "#" }]}
|
||||||
</div>
|
/>
|
||||||
<button className="mt-8 bg-yellow-400 text-black px-8 py-3 rounded-full font-semibold hover:bg-yellow-300 transition-colors">
|
|
||||||
Discover More
|
|
||||||
</button>
|
|
||||||
</div>
|
|
||||||
</div>
|
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
<div id="contact" data-section="contact">
|
<div id="contact" data-section="contact">
|
||||||
<div className="py-16 bg-gray-900 text-white">
|
<ContactSplitForm
|
||||||
<div className="max-w-6xl mx-auto px-6">
|
title="Get in Touch with the Force"
|
||||||
<div className="grid grid-cols-2 gap-12 items-center">
|
description="Subscribe to our newsletter for exclusive Star Wars content, updates, and announcements from the galaxy far, far away."
|
||||||
<div>
|
inputs={[
|
||||||
<h2 className="text-4xl font-extrabold mb-6">Join the Force</h2>
|
{ name: "name", type: "text", placeholder: "Your Name", required: true },
|
||||||
<p className="text-xl text-gray-300 mb-8">Subscribe for exclusive Star Wars news, community updates, and behind-the-scenes content.</p>
|
{ name: "email", type: "email", placeholder: "Your Email", required: true }
|
||||||
<form className="space-y-4">
|
]}
|
||||||
<input
|
textarea={{
|
||||||
type="text"
|
name: "message",
|
||||||
placeholder="Your name"
|
placeholder: "Tell us about your favorite Star Wars moment...",
|
||||||
className="w-full p-3 rounded-lg bg-gray-800 border border-gray-700 text-white placeholder-gray-400"
|
rows: 4,
|
||||||
required
|
required: true
|
||||||
/>
|
}}
|
||||||
<input
|
imageSrc="https://webuild-dev.s3.eu-north-1.amazonaws.com/gallery/uploaded-1766502905270-5whkj6nu.jpg"
|
||||||
type="email"
|
imageAlt="Star Wars Contact"
|
||||||
placeholder="Your email address"
|
mediaPosition="right"
|
||||||
className="w-full p-3 rounded-lg bg-gray-800 border border-gray-700 text-white placeholder-gray-400"
|
buttonText="Send Message"
|
||||||
required
|
useInvertedBackground="noInvert"
|
||||||
/>
|
/>
|
||||||
<textarea
|
|
||||||
placeholder="Type your message..."
|
|
||||||
rows={5}
|
|
||||||
className="w-full p-3 rounded-lg bg-gray-800 border border-gray-700 text-white placeholder-gray-400"
|
|
||||||
required
|
|
||||||
></textarea>
|
|
||||||
<button className="w-full bg-yellow-400 text-black px-8 py-3 rounded-lg font-semibold hover:bg-yellow-300 transition-colors">
|
|
||||||
Send Message
|
|
||||||
</button>
|
|
||||||
</form>
|
|
||||||
</div>
|
|
||||||
<div>
|
|
||||||
<img
|
|
||||||
src="https://webuild-dev.s3.eu-north-1.amazonaws.com/gallery/uploaded-1766502905270-5whkj6nu.jpg"
|
|
||||||
alt="Contact background"
|
|
||||||
className="w-full h-96 object-cover rounded-lg"
|
|
||||||
/>
|
|
||||||
</div>
|
|
||||||
</div>
|
|
||||||
</div>
|
|
||||||
</div>
|
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
<div id="footer" data-section="footer">
|
<div id="footer" data-section="footer">
|
||||||
<div className="bg-black text-white py-12">
|
<FooterSocial
|
||||||
<div className="max-w-6xl mx-auto px-6">
|
logoText="STAR WARS"
|
||||||
<div className="grid grid-cols-4 gap-8 mb-8">
|
columns={[
|
||||||
<div className="col-span-2">
|
{
|
||||||
<h3 className="text-2xl font-extrabold text-yellow-400 mb-4">STAR WARS</h3>
|
title: "Explore",
|
||||||
<p className="text-gray-400 mb-4">Join millions of Star Wars fans worldwide. Discover exclusive content, connect with the community, and celebrate the epic saga.</p>
|
items: [
|
||||||
</div>
|
{ label: "Movies", href: "#" },
|
||||||
<div>
|
{ label: "Series", href: "#" },
|
||||||
<h4 className="font-semibold mb-4">Explore</h4>
|
{ label: "Characters", href: "#" }
|
||||||
<ul className="space-y-2 text-gray-400">
|
]
|
||||||
<li><a href="#movies" className="hover:text-white">Movies</a></li>
|
},
|
||||||
<li><a href="#series" className="hover:text-white">Series</a></li>
|
{
|
||||||
<li><a href="#characters" className="hover:text-white">Characters</a></li>
|
title: "Community",
|
||||||
</ul>
|
items: [
|
||||||
</div>
|
{ label: "Forums", href: "#" },
|
||||||
<div>
|
{ label: "Events", href: "#" },
|
||||||
<h4 className="font-semibold mb-4">Community</h4>
|
{ label: "Merch", href: "#" }
|
||||||
<ul className="space-y-2 text-gray-400">
|
]
|
||||||
<li><a href="#forums" className="hover:text-white">Forums</a></li>
|
}
|
||||||
<li><a href="#events" className="hover:text-white">Events</a></li>
|
]}
|
||||||
<li><a href="#merch" className="hover:text-white">Merch</a></li>
|
socialLinks={[
|
||||||
</ul>
|
{ icon: Youtube, href: "https://youtube.com", ariaLabel: "YouTube" },
|
||||||
</div>
|
{ icon: Twitter, href: "https://twitter.com", ariaLabel: "Twitter" },
|
||||||
</div>
|
{ icon: Linkedin, href: "https://linkedin.com", ariaLabel: "LinkedIn" }
|
||||||
<div className="border-t border-gray-800 pt-8 flex justify-between items-center">
|
]}
|
||||||
<p className="text-gray-400">© 2024 STAR WARS. All rights reserved.</p>
|
copyrightText="© 2024 STAR WARS. All rights reserved."
|
||||||
<div className="flex space-x-4">
|
/>
|
||||||
<a href="https://youtube.com" className="text-gray-400 hover:text-white" aria-label="YouTube">
|
|
||||||
<svg className="w-6 h-6" fill="currentColor" viewBox="0 0 24 24">
|
|
||||||
<path d="M23.498 6.186a3.016 3.016 0 0 0-2.122-2.136C19.505 3.545 12 3.545 12 3.545s-7.505 0-9.377.505A3.017 3.017 0 0 0 .502 6.186C0 8.07 0 12 0 12s0 3.93.502 5.814a3.016 3.016 0 0 0 2.122 2.136c1.871.505 9.376.505 9.376.505s7.505 0 9.377-.505a3.015 3.015 0 0 0 2.122-2.136C24 15.93 24 12 24 12s0-3.93-.502-5.814zM9.545 15.568V8.432L15.818 12l-6.273 3.568z"/>
|
|
||||||
</svg>
|
|
||||||
</a>
|
|
||||||
<a href="https://twitter.com" className="text-gray-400 hover:text-white" aria-label="Twitter">
|
|
||||||
<svg className="w-6 h-6" fill="currentColor" viewBox="0 0 24 24">
|
|
||||||
<path d="M23.953 4.57a10 10 0 01-2.825.775 4.958 4.958 0 002.163-2.723c-.951.555-2.005.959-3.127 1.184a4.92 4.92 0 00-8.384 4.482C7.69 8.095 4.067 6.13 1.64 3.162a4.822 4.822 0 00-.666 2.475c0 1.71.87 3.213 2.188 4.096a4.904 4.904 0 01-2.228-.616v.06a4.923 4.923 0 003.946 4.827 4.996 4.996 0 01-2.212.085 4.936 4.936 0 004.604 3.417 9.867 9.867 0 01-6.102 2.105c-.39 0-.779-.023-1.17-.067a13.995 13.995 0 007.557 2.209c9.053 0 13.998-7.496 13.998-13.985 0-.21 0-.42-.015-.63A9.935 9.935 0 0024 4.59z"/>
|
|
||||||
</svg>
|
|
||||||
</a>
|
|
||||||
<a href="https://linkedin.com" className="text-gray-400 hover:text-white" aria-label="LinkedIn">
|
|
||||||
<svg className="w-6 h-6" fill="currentColor" viewBox="0 0 24 24">
|
|
||||||
<path d="M20.447 20.452h-3.554v-5.569c0-1.328-.027-3.037-1.852-3.037-1.853 0-2.136 1.445-2.136 2.939v5.667H9.351V9h3.414v1.561h.046c.477-.9 1.637-1.85 3.37-1.85 3.601 0 4.267 2.37 4.267 5.455v6.286zM5.337 7.433c-1.144 0-2.063-.926-2.063-2.065 0-1.138.92-2.063 2.063-2.063 1.14 0 2.064.925 2.064 2.063 0 1.139-.925 2.065-2.064 2.065zm1.782 13.019H3.555V9h3.564v11.452zM22.225 0H1.771C.792 0 0 .774 0 1.729v20.542C0 23.227.792 24 1.771 24h20.451C23.2 24 24 23.227 24 22.271V1.729C24 .774 23.2 0 22.222 0h.003z"/>
|
|
||||||
</svg>
|
|
||||||
</a>
|
|
||||||
</div>
|
|
||||||
</div>
|
|
||||||
</div>
|
|
||||||
</div>
|
|
||||||
</div>
|
</div>
|
||||||
</ThemeProvider>
|
</ThemeProvider>
|
||||||
);
|
);
|
||||||
|
|||||||
Reference in New Issue
Block a user