|
<!DOCTYPE html> |
|
<html lang="en"> |
|
<head> |
|
<meta charset="UTF-8"> |
|
<meta name="viewport" content="width=device-width, initial-scale=1.0"> |
|
<title>YSN RFD WEBSITE</title> |
|
<script src="https://cdn.tailwindcss.com"></script> |
|
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.4.0/css/all.min.css"> |
|
<link href="https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800;900&display=swap" rel="stylesheet"> |
|
<style> |
|
:root { |
|
--primary: #3b82f6; |
|
--secondary: #8b5cf6; |
|
--dark: #1e293b; |
|
--light: #f8fafc; |
|
} |
|
|
|
body { |
|
font-family: 'Poppins', sans-serif; |
|
background-color: var(--light); |
|
color: var(--dark); |
|
overflow-x: hidden; |
|
} |
|
|
|
.gradient-text { |
|
background: linear-gradient(90deg, var(--primary), var(--secondary)); |
|
-webkit-background-clip: text; |
|
background-clip: text; |
|
color: transparent; |
|
} |
|
|
|
.gradient-bg { |
|
background: linear-gradient(135deg, var(--primary), var(--secondary)); |
|
} |
|
|
|
.nav-link { |
|
position: relative; |
|
} |
|
|
|
.nav-link::after { |
|
content: ''; |
|
position: absolute; |
|
width: 0; |
|
height: 2px; |
|
bottom: 0; |
|
left: 0; |
|
background: linear-gradient(90deg, var(--primary), var(--secondary)); |
|
transition: width 0.3s ease; |
|
} |
|
|
|
.nav-link:hover::after { |
|
width: 100%; |
|
} |
|
|
|
.card { |
|
transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275); |
|
transform: translateY(0); |
|
opacity: 0; |
|
} |
|
|
|
.card.animate { |
|
opacity: 1; |
|
transform: translateY(0); |
|
} |
|
|
|
.floating { |
|
animation: floating 6s ease-in-out infinite; |
|
} |
|
|
|
@keyframes floating { |
|
0% { transform: translateY(0px); } |
|
50% { transform: translateY(-15px); } |
|
100% { transform: translateY(0px); } |
|
} |
|
|
|
.wave-shape { |
|
position: absolute; |
|
bottom: 0; |
|
left: 0; |
|
width: 100%; |
|
overflow: hidden; |
|
line-height: 0; |
|
} |
|
|
|
.wave-shape svg { |
|
position: relative; |
|
display: block; |
|
width: calc(100% + 1.3px); |
|
height: 150px; |
|
} |
|
|
|
.wave-shape .shape-fill { |
|
fill: #FFFFFF; |
|
} |
|
|
|
.hero-image { |
|
clip-path: polygon(25% 0%, 100% 0%, 75% 100%, 0% 100%); |
|
animation: fadeInRight 1s ease-out forwards; |
|
} |
|
|
|
@keyframes fadeInRight { |
|
from { |
|
opacity: 0; |
|
transform: translateX(50px); |
|
} |
|
to { |
|
opacity: 1; |
|
transform: translateX(0); |
|
} |
|
} |
|
|
|
.btn-glow { |
|
position: relative; |
|
overflow: hidden; |
|
z-index: 1; |
|
} |
|
|
|
.btn-glow::before { |
|
content: ''; |
|
position: absolute; |
|
top: 0; |
|
left: -100%; |
|
width: 100%; |
|
height: 100%; |
|
background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent); |
|
transition: all 0.6s ease; |
|
z-index: -1; |
|
} |
|
|
|
.btn-glow:hover::before { |
|
left: 100%; |
|
} |
|
|
|
.pulse { |
|
animation: pulse 2s infinite; |
|
} |
|
|
|
@keyframes pulse { |
|
0% { |
|
box-shadow: 0 0 0 0 rgba(59, 130, 246, 0.7); |
|
} |
|
70% { |
|
box-shadow: 0 0 0 15px rgba(59, 130, 246, 0); |
|
} |
|
100% { |
|
box-shadow: 0 0 0 0 rgba(59, 130, 246, 0); |
|
} |
|
} |
|
|
|
.rotate-in { |
|
animation: rotateIn 1s ease-out forwards; |
|
} |
|
|
|
@keyframes rotateIn { |
|
from { |
|
transform: rotate(-15deg) scale(0.8); |
|
opacity: 0; |
|
} |
|
to { |
|
transform: rotate(0) scale(1); |
|
opacity: 1; |
|
} |
|
} |
|
|
|
.staggered-child > * { |
|
opacity: 0; |
|
transform: translateY(20px); |
|
transition: all 0.6s cubic-bezier(0.165, 0.84, 0.44, 1); |
|
} |
|
|
|
.staggered-child.animate > * { |
|
opacity: 1; |
|
transform: translateY(0); |
|
} |
|
|
|
.staggered-child.animate > *:nth-child(1) { transition-delay: 0.1s; } |
|
.staggered-child.animate > *:nth-child(2) { transition-delay: 0.2s; } |
|
.staggered-child.animate > *:nth-child(3) { transition-delay: 0.3s; } |
|
.staggered-child.animate > *:nth-child(4) { transition-delay: 0.4s; } |
|
.staggered-child.animate > *:nth-child(5) { transition-delay: 0.5s; } |
|
|
|
.parallax { |
|
background-attachment: fixed; |
|
background-position: center; |
|
background-repeat: no-repeat; |
|
background-size: cover; |
|
} |
|
|
|
.glass-effect { |
|
background: rgba(255, 255, 255, 0.1); |
|
backdrop-filter: blur(10px); |
|
-webkit-backdrop-filter: blur(10px); |
|
border: 1px solid rgba(255, 255, 255, 0.2); |
|
} |
|
</style> |
|
</head> |
|
<body class="antialiased"> |
|
|
|
<nav class="fixed w-full z-50 bg-white/80 backdrop-blur-md shadow-sm"> |
|
<div class="max-w-7xl mx-auto px-4 sm:px-6 lg:px-8"> |
|
<div class="flex justify-between h-20 items-center"> |
|
<div class="flex items-center"> |
|
<div class="flex-shrink-0 flex items-center"> |
|
<div class="h-10 w-10 rounded-full gradient-bg flex items-center justify-center text-white font-bold text-xl rotate-in"> |
|
YSN |
|
</div> |
|
<span class="ml-3 text-xl font-bold gradient-text">RFD</span> |
|
</div> |
|
</div> |
|
<div class="hidden md:ml-6 md:flex md:items-center md:space-x-8"> |
|
<a href="#" class="nav-link text-gray-900 hover:text-blue-600 px-3 py-2 text-sm font-medium">Home</a> |
|
<a href="#" class="nav-link text-gray-900 hover:text-blue-600 px-3 py-2 text-sm font-medium">Services</a> |
|
<a href="#" class="nav-link text-gray-900 hover:text-blue-600 px-3 py-2 text-sm font-medium">About</a> |
|
<a href="#" class="nav-link text-gray-900 hover:text-blue-600 px-3 py-2 text-sm font-medium">Contact</a> |
|
<button class="btn-glow gradient-bg text-white px-6 py-2 rounded-full text-sm font-medium hover:shadow-lg transition-all duration-300 transform hover:scale-105"> |
|
Get Started |
|
</button> |
|
</div> |
|
<div class="-mr-2 flex items-center md:hidden"> |
|
<button type="button" class="inline-flex items-center justify-center p-2 rounded-md text-gray-400 hover:text-gray-500 hover:bg-gray-100 focus:outline-none focus:ring-2 focus:ring-inset focus:ring-blue-500" aria-controls="mobile-menu" aria-expanded="false"> |
|
<span class="sr-only">Open main menu</span> |
|
<i class="fas fa-bars"></i> |
|
</button> |
|
</div> |
|
</div> |
|
</div> |
|
</nav> |
|
|
|
|
|
<div class="relative overflow-hidden pt-24"> |
|
<div class="max-w-7xl mx-auto"> |
|
<div class="relative z-10 pb-8 sm:pb-16 md:pb-20 lg:max-w-2xl lg:w-full lg:pb-28 xl:pb-32"> |
|
<div class="pt-10 sm:pt-16 lg:pt-8 lg:pb-14 lg:overflow-hidden"> |
|
<div class="mt-10 mx-auto max-w-7xl px-4 sm:mt-12 sm:px-6 md:mt-16 lg:mt-20 lg:px-8 xl:mt-28"> |
|
<div class="sm:text-center lg:text-left staggered-child"> |
|
<h1 class="text-4xl tracking-tight font-extrabold text-gray-900 sm:text-5xl md:text-6xl"> |
|
<span class="block">Welcome to</span> |
|
<span class="block gradient-text">YSN RFD WEBSITE</span> |
|
</h1> |
|
<p class="mt-3 text-base text-gray-500 sm:mt-5 sm:text-lg sm:max-w-xl sm:mx-auto md:mt-5 md:text-xl lg:mx-0"> |
|
Innovative solutions for your digital needs. We create exceptional experiences that drive results and transform businesses. |
|
</p> |
|
<div class="mt-8 sm:mt-10 sm:flex sm:justify-center lg:justify-start space-y-3 sm:space-y-0 sm:space-x-4"> |
|
<div class="rounded-full shadow-lg transform hover:scale-105 transition duration-300"> |
|
<a href="#" class="btn-glow w-full flex items-center justify-center px-8 py-3 border border-transparent text-base font-medium rounded-full text-white gradient-bg hover:shadow-xl md:py-4 md:text-lg md:px-10"> |
|
Explore More |
|
</a> |
|
</div> |
|
<div class="rounded-full shadow-lg transform hover:scale-105 transition duration-300"> |
|
<a href="#" class="w-full flex items-center justify-center px-8 py-3 border border-transparent text-base font-medium rounded-full text-blue-600 bg-white hover:bg-gray-50 md:py-4 md:text-lg md:px-10"> |
|
Learn More |
|
</a> |
|
</div> |
|
</div> |
|
</div> |
|
</div> |
|
</div> |
|
</div> |
|
</div> |
|
<div class="lg:absolute lg:inset-y-0 lg:right-0 lg:w-1/2"> |
|
<img class="hero-image h-56 w-full object-cover sm:h-72 md:h-96 lg:w-full lg:h-full" src="https://images.unsplash.com/photo-1551434678-e076c223a692?ixlib=rb-1.2.1&ixid=eyJhcHBfaWQiOjEyMDd9&auto=format&fit=crop&w=2850&q=80" alt=""> |
|
</div> |
|
</div> |
|
|
|
|
|
<div class="py-20 bg-white"> |
|
<div class="max-w-7xl mx-auto px-4 sm:px-6 lg:px-8"> |
|
<div class="lg:text-center"> |
|
<h2 class="text-base text-blue-600 font-semibold tracking-wide uppercase">Features</h2> |
|
<p class="mt-2 text-3xl leading-8 font-extrabold tracking-tight text-gray-900 sm:text-4xl"> |
|
A better way to grow your business |
|
</p> |
|
<p class="mt-4 max-w-2xl text-xl text-gray-500 lg:mx-auto"> |
|
Our platform provides everything you need to succeed in the digital world. |
|
</p> |
|
</div> |
|
|
|
<div class="mt-16"> |
|
<div class="space-y-10 md:space-y-0 md:grid md:grid-cols-3 md:gap-x-8 md:gap-y-10"> |
|
<div class="card relative bg-gradient-to-br from-blue-50 to-purple-50 p-8 rounded-2xl shadow-sm hover:shadow-lg border border-gray-100"> |
|
<div class="absolute -top-6 left-6 h-14 w-14 rounded-full gradient-bg flex items-center justify-center text-white shadow-lg pulse"> |
|
<i class="fas fa-rocket text-2xl"></i> |
|
</div> |
|
<h3 class="mt-10 text-xl font-semibold text-gray-900">Fast Performance</h3> |
|
<p class="mt-4 text-base text-gray-600"> |
|
Optimized for speed and efficiency to ensure your users get the best experience possible. |
|
</p> |
|
<div class="mt-6"> |
|
<a href="#" class="text-blue-600 font-medium hover:text-blue-800 flex items-center"> |
|
Learn more |
|
<i class="fas fa-arrow-right ml-2"></i> |
|
</a> |
|
</div> |
|
</div> |
|
|
|
<div class="card relative bg-gradient-to-br from-blue-50 to-purple-50 p-8 rounded-2xl shadow-sm hover:shadow-lg border border-gray-100"> |
|
<div class="absolute -top-6 left-6 h-14 w-14 rounded-full gradient-bg flex items-center justify-center text-white shadow-lg pulse"> |
|
<i class="fas fa-lock text-2xl"></i> |
|
</div> |
|
<h3 class="mt-10 text-xl font-semibold text-gray-900">Secure Platform</h3> |
|
<p class="mt-4 text-base text-gray-600"> |
|
Enterprise-grade security to protect your data and keep your business safe from threats. |
|
</p> |
|
<div class="mt-6"> |
|
<a href="#" class="text-blue-600 font-medium hover:text-blue-800 flex items-center"> |
|
Learn more |
|
<i class="fas fa-arrow-right ml-2"></i> |
|
</a> |
|
</div> |
|
</div> |
|
|
|
<div class="card relative bg-gradient-to-br from-blue-50 to-purple-50 p-8 rounded-2xl shadow-sm hover:shadow-lg border border-gray-100"> |
|
<div class="absolute -top-6 left-6 h-14 w-14 rounded-full gradient-bg flex items-center justify-center text-white shadow-lg pulse"> |
|
<i class="fas fa-cogs text-2xl"></i> |
|
</div> |
|
<h3 class="mt-10 text-xl font-semibold text-gray-900">Easy Integration</h3> |
|
<p class="mt-4 text-base text-gray-600"> |
|
Seamlessly connect with your existing tools and workflows for maximum productivity. |
|
</p> |
|
<div class="mt-6"> |
|
<a href="#" class="text-blue-600 font-medium hover:text-blue-800 flex items-center"> |
|
Learn more |
|
<i class="fas fa-arrow-right ml-2"></i> |
|
</a> |
|
</div> |
|
</div> |
|
</div> |
|
</div> |
|
</div> |
|
</div> |
|
|
|
|
|
<div class="gradient-bg relative overflow-hidden"> |
|
<div class="absolute inset-0 opacity-10"> |
|
<div class="absolute inset-0 bg-[url('https://grainy-gradients.vercel.app/noise.svg')]"></div> |
|
</div> |
|
<div class="max-w-7xl mx-auto py-20 px-4 sm:px-6 lg:px-8 relative"> |
|
<div class="max-w-4xl mx-auto text-center"> |
|
<h2 class="text-3xl font-extrabold text-white sm:text-4xl"> |
|
Trusted by businesses worldwide |
|
</h2> |
|
<p class="mt-3 text-xl text-blue-100"> |
|
Our platform helps thousands of businesses grow and succeed every day. |
|
</p> |
|
</div> |
|
<div class="mt-16 text-center grid grid-cols-1 gap-10 sm:grid-cols-3 sm:gap-8"> |
|
<div class="glass-effect p-8 rounded-2xl transform hover:scale-105 transition duration-300"> |
|
<div class="flex items-center justify-center h-16 w-16 rounded-full bg-white/10 text-white mx-auto"> |
|
<i class="fas fa-users text-2xl"></i> |
|
</div> |
|
<div class="mt-6"> |
|
<p class="text-5xl font-extrabold text-white">10K+</p> |
|
<p class="mt-2 text-lg text-blue-100">Happy Customers</p> |
|
</div> |
|
</div> |
|
<div class="glass-effect p-8 rounded-2xl transform hover:scale-105 transition duration-300"> |
|
<div class="flex items-center justify-center h-16 w-16 rounded-full bg-white/10 text-white mx-auto"> |
|
<i class="fas fa-globe text-2xl"></i> |
|
</div> |
|
<div class="mt-6"> |
|
<p class="text-5xl font-extrabold text-white">150+</p> |
|
<p class="mt-2 text-lg text-blue-100">Countries</p> |
|
</div> |
|
</div> |
|
<div class="glass-effect p-8 rounded-2xl transform hover:scale-105 transition duration-300"> |
|
<div class="flex items-center justify-center h-16 w-16 rounded-full bg-white/10 text-white mx-auto"> |
|
<i class="fas fa-project-diagram text-2xl"></i> |
|
</div> |
|
<div class="mt-6"> |
|
<p class="text-5xl font-extrabold text-white">500+</p> |
|
<p class="mt-2 text-lg text-blue-100">Projects Completed</p> |
|
</div> |
|
</div> |
|
</div> |
|
</div> |
|
</div> |
|
|
|
|
|
<div class="bg-white py-20 lg:py-28"> |
|
<div class="max-w-7xl mx-auto px-4 sm:px-6 lg:px-8"> |
|
<div class="lg:text-center"> |
|
<h2 class="text-base text-blue-600 font-semibold tracking-wide uppercase">Testimonials</h2> |
|
<p class="mt-2 text-3xl leading-8 font-extrabold tracking-tight text-gray-900 sm:text-4xl"> |
|
What our clients say |
|
</p> |
|
</div> |
|
<div class="mt-16 grid gap-8 lg:grid-cols-3"> |
|
<div class="card bg-gradient-to-br from-blue-50 to-purple-50 p-8 rounded-2xl shadow-sm hover:shadow-lg border border-gray-100"> |
|
<div class="flex items-center"> |
|
<div class="h-14 w-14 rounded-full gradient-bg flex items-center justify-center text-white font-bold text-xl shadow-md"> |
|
JD |
|
</div> |
|
<div class="ml-4"> |
|
<h4 class="text-lg font-semibold text-gray-900">John Doe</h4> |
|
<p class="text-blue-600">CEO, TechCorp</p> |
|
</div> |
|
</div> |
|
<p class="mt-6 text-gray-600 italic"> |
|
"YSN RFD transformed our digital presence. Their team delivered exceptional results beyond our expectations." |
|
</p> |
|
<div class="mt-6 flex text-yellow-400"> |
|
<i class="fas fa-star"></i> |
|
<i class="fas fa-star"></i> |
|
<i class="fas fa-star"></i> |
|
<i class="fas fa-star"></i> |
|
<i class="fas fa-star"></i> |
|
</div> |
|
</div> |
|
|
|
<div class="card bg-gradient-to-br from-blue-50 to-purple-50 p-8 rounded-2xl shadow-sm hover:shadow-lg border border-gray-100"> |
|
<div class="flex items-center"> |
|
<div class="h-14 w-14 rounded-full gradient-bg flex items-center justify-center text-white font-bold text-xl shadow-md"> |
|
AS |
|
</div> |
|
<div class="ml-4"> |
|
<h4 class="text-lg font-semibold text-gray-900">Alice Smith</h4> |
|
<p class="text-blue-600">Marketing Director, BrandCo</p> |
|
</div> |
|
</div> |
|
<p class="mt-6 text-gray-600 italic"> |
|
"The level of professionalism and attention to detail is unmatched. Our website traffic increased by 300%!" |
|
</p> |
|
<div class="mt-6 flex text-yellow-400"> |
|
<i class="fas fa-star"></i> |
|
<i class="fas fa-star"></i> |
|
<i class="fas fa-star"></i> |
|
<i class="fas fa-star"></i> |
|
<i class="fas fa-star-half-alt"></i> |
|
</div> |
|
</div> |
|
|
|
<div class="card bg-gradient-to-br from-blue-50 to-purple-50 p-8 rounded-2xl shadow-sm hover:shadow-lg border border-gray-100"> |
|
<div class="flex items-center"> |
|
<div class="h-14 w-14 rounded-full gradient-bg flex items-center justify-center text-white font-bold text-xl shadow-md"> |
|
RJ |
|
</div> |
|
<div class="ml-4"> |
|
<h4 class="text-lg font-semibold text-gray-900">Robert Johnson</h4> |
|
<p class="text-blue-600">Founder, StartupX</p> |
|
</div> |
|
</div> |
|
<p class="mt-6 text-gray-600 italic"> |
|
"From concept to execution, YSN RFD exceeded our expectations. Their team is truly talented and dedicated." |
|
</p> |
|
<div class="mt-6 flex text-yellow-400"> |
|
<i class="fas fa-star"></i> |
|
<i class="fas fa-star"></i> |
|
<i class="fas fa-star"></i> |
|
<i class="fas fa-star"></i> |
|
<i class="fas fa-star"></i> |
|
</div> |
|
</div> |
|
</div> |
|
</div> |
|
</div> |
|
|
|
|
|
<div class="bg-gray-900 relative overflow-hidden"> |
|
<div class="absolute inset-0 opacity-10"> |
|
<div class="absolute inset-0 bg-[url('https://grainy-gradients.vercel.app/noise.svg')]"></div> |
|
</div> |
|
<div class="max-w-7xl mx-auto py-20 px-4 sm:px-6 lg:py-24 lg:px-8 lg:flex lg:items-center lg:justify-between relative"> |
|
<div class="max-w-xl"> |
|
<h2 class="text-3xl font-extrabold tracking-tight text-white sm:text-4xl staggered-child"> |
|
<span class="block">Ready to dive in?</span> |
|
<span class="block text-blue-400">Start your journey with YSN RFD today.</span> |
|
</h2> |
|
<p class="mt-4 text-lg text-gray-300"> |
|
Join thousands of satisfied customers who trust our platform for their business growth. |
|
</p> |
|
</div> |
|
<div class="mt-8 flex lg:mt-0 lg:flex-shrink-0 space-x-4"> |
|
<div class="inline-flex rounded-full shadow-lg transform hover:scale-105 transition duration-300"> |
|
<a href="#" class="btn-glow inline-flex items-center justify-center px-8 py-3 border border-transparent text-base font-medium rounded-full text-white gradient-bg hover:shadow-xl"> |
|
Get started |
|
</a> |
|
</div> |
|
<div class="inline-flex rounded-full shadow-lg transform hover:scale-105 transition duration-300"> |
|
<a href="#" class="inline-flex items-center justify-center px-8 py-3 border border-transparent text-base font-medium rounded-full text-white bg-gray-800 hover:bg-gray-700"> |
|
Learn more |
|
</a> |
|
</div> |
|
</div> |
|
</div> |
|
</div> |
|
|
|
|
|
<footer class="bg-white relative"> |
|
<div class="wave-shape"> |
|
<svg data-name="Layer 1" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1200 120" preserveAspectRatio="none"> |
|
<path d="M321.39,56.44c58-10.79,114.16-30.13,172-41.86,82.39-16.72,168.19-17.73,250.45-.39C823.78,31,906.67,72,985.66,92.83c70.05,18.48,146.53,26.09,214.34,3V0H0V27.35A600.21,600.21,0,0,0,321.39,56.44Z" class="shape-fill"></path> |
|
</svg> |
|
</div> |
|
<div class="max-w-7xl mx-auto py-16 px-4 sm:px-6 lg:px-8"> |
|
<div class="xl:grid xl:grid-cols-3 xl:gap-8"> |
|
<div class="space-y-8 xl:col-span-1"> |
|
<div class="flex items-center"> |
|
<div class="h-12 w-12 rounded-full gradient-bg flex items-center justify-center text-white font-bold text-xl"> |
|
YSN |
|
</div> |
|
<span class="ml-3 text-2xl font-bold gradient-text">RFD</span> |
|
</div> |
|
<p class="text-gray-500 text-base"> |
|
Empowering businesses with innovative digital solutions since 2023. |
|
</p> |
|
<div class="flex space-x-6"> |
|
<a href="#" class="text-gray-400 hover:text-blue-500 transition duration-300 transform hover:scale-125"> |
|
<i class="fab fa-facebook-f"></i> |
|
</a> |
|
<a href="#" class="text-gray-400 hover:text-blue-400 transition duration-300 transform hover:scale-125"> |
|
<i class="fab fa-twitter"></i> |
|
</a> |
|
<a href="#" class="text-gray-400 hover:text-pink-500 transition duration-300 transform hover:scale-125"> |
|
<i class="fab fa-instagram"></i> |
|
</a> |
|
<a href="#" class="text-gray-400 hover:text-gray-500 transition duration-300 transform hover:scale-125"> |
|
<i class="fab fa-linkedin-in"></i> |
|
</a> |
|
</div> |
|
</div> |
|
<div class="mt-12 grid grid-cols-2 gap-8 xl:mt-0 xl:col-span-2"> |
|
<div class="md:grid md:grid-cols-2 md:gap-8"> |
|
<div> |
|
<h3 class="text-sm font-semibold text-gray-900 tracking-wider uppercase"> |
|
Solutions |
|
</h3> |
|
<ul class="mt-4 space-y-4"> |
|
<li> |
|
<a href="#" class="text-base text-gray-500 hover:text-gray-900 transition duration-300"> |
|
Web Development |
|
</a> |
|
</li> |
|
<li> |
|
<a href="#" class="text-base text-gray-500 hover:text-gray-900 transition duration-300"> |
|
Mobile Apps |
|
</a> |
|
</li> |
|
<li> |
|
<a href="#" class="text-base text-gray-500 hover:text-gray-900 transition duration-300"> |
|
Digital Marketing |
|
</a> |
|
</li> |
|
<li> |
|
<a href="#" class="text-base text-gray-500 hover:text-gray-900 transition duration-300"> |
|
UI/UX Design |
|
</a> |
|
</li> |
|
</ul> |
|
</div> |
|
<div class="mt-12 md:mt-0"> |
|
<h3 class="text-sm font-semibold text-gray-900 tracking-wider uppercase"> |
|
Support |
|
</h3> |
|
<ul class="mt-4 space-y-4"> |
|
<li> |
|
<a href="#" class="text-base text-gray-500 hover:text-gray-900 transition duration-300"> |
|
Pricing |
|
</a> |
|
</li> |
|
<li> |
|
<a href="#" class="text-base text-gray-500 hover:text-gray-900 transition duration-300"> |
|
Documentation |
|
</a> |
|
</li> |
|
<li> |
|
<a href="#" class="text-base text-gray-500 hover:text-gray-900 transition duration-300"> |
|
Guides |
|
</a> |
|
</li> |
|
<li> |
|
<a href="#" class="text-base text-gray-500 hover:text-gray-900 transition duration-300"> |
|
API Status |
|
</a> |
|
</li> |
|
</ul> |
|
</div> |
|
</div> |
|
<div class="md:grid md:grid-cols-2 md:gap-8"> |
|
<div> |
|
<h3 class="text-sm font-semibold text-gray-900 tracking-wider uppercase"> |
|
Company |
|
</h3> |
|
<ul class="mt-4 space-y-4"> |
|
<li> |
|
<a href="#" class="text-base text-gray-500 hover:text-gray-900 transition duration-300"> |
|
About |
|
</a> |
|
</li> |
|
<li> |
|
<a href="#" class="text-base text-gray-500 hover:text-gray-900 transition duration-300"> |
|
Blog |
|
</a> |
|
</li> |
|
<li> |
|
<a href="#" class="text-base text-gray-500 hover:text-gray-900 transition duration-300"> |
|
Careers |
|
</a> |
|
</li> |
|
<li> |
|
<a href="#" class="text-base text-gray-500 hover:text-gray-900 transition duration-300"> |
|
Press |
|
</a> |
|
</li> |
|
</ul> |
|
</div> |
|
<div class="mt-12 md:mt-0"> |
|
<h3 class="text-sm font-semibold text-gray-900 tracking-wider uppercase"> |
|
Legal |
|
</h3> |
|
<ul class="mt-4 space-y-4"> |
|
<li> |
|
<a href="#" class="text-base text-gray-500 hover:text-gray-900 transition duration-300"> |
|
Privacy |
|
</a> |
|
</li> |
|
<li> |
|
<a href="#" class="text-base text-gray-500 hover:text-gray-900 transition duration-300"> |
|
Terms |
|
</a> |
|
</li> |
|
<li> |
|
<a href="#" class="text-base text-gray-500 hover:text-gray-900 transition duration-300"> |
|
Cookie Policy |
|
</a> |
|
</li> |
|
</ul> |
|
</div> |
|
</div> |
|
</div> |
|
</div> |
|
<div class="mt-16 border-t border-gray-200 pt-8"> |
|
<p class="text-base text-gray-400 text-center"> |
|
© 2023 YSN RFD. All rights reserved. |
|
</p> |
|
</div> |
|
</div> |
|
</footer> |
|
|
|
<script> |
|
|
|
document.addEventListener('DOMContentLoaded', function() { |
|
const mobileMenuButton = document.querySelector('[aria-controls="mobile-menu"]'); |
|
const mobileMenu = document.getElementById('mobile-menu'); |
|
|
|
mobileMenuButton.addEventListener('click', function() { |
|
const expanded = this.getAttribute('aria-expanded') === 'true'; |
|
this.setAttribute('aria-expanded', !expanded); |
|
if (mobileMenu) { |
|
mobileMenu.classList.toggle('hidden'); |
|
} |
|
}); |
|
|
|
|
|
document.querySelectorAll('a[href^="#"]').forEach(anchor => { |
|
anchor.addEventListener('click', function (e) { |
|
e.preventDefault(); |
|
|
|
const targetId = this.getAttribute('href'); |
|
if (targetId === '#') return; |
|
|
|
const targetElement = document.querySelector(targetId); |
|
if (targetElement) { |
|
targetElement.scrollIntoView({ |
|
behavior: 'smooth' |
|
}); |
|
} |
|
}); |
|
}); |
|
|
|
|
|
const animateOnScroll = function() { |
|
const cards = document.querySelectorAll('.card'); |
|
const staggeredElements = document.querySelectorAll('.staggered-child'); |
|
|
|
cards.forEach(card => { |
|
const cardPosition = card.getBoundingClientRect().top; |
|
const screenPosition = window.innerHeight / 1.2; |
|
|
|
if (cardPosition < screenPosition) { |
|
card.classList.add('animate'); |
|
} |
|
}); |
|
|
|
staggeredElements.forEach(element => { |
|
const elementPosition = element.getBoundingClientRect().top; |
|
const screenPosition = window.innerHeight / 1.2; |
|
|
|
if (elementPosition < screenPosition) { |
|
element.classList.add('animate'); |
|
} |
|
}); |
|
}; |
|
|
|
|
|
document.querySelectorAll('.card').forEach(el => { |
|
el.style.opacity = '0'; |
|
el.style.transform = 'translateY(20px)'; |
|
}); |
|
|
|
window.addEventListener('scroll', animateOnScroll); |
|
animateOnScroll(); |
|
|
|
|
|
const floatingElements = document.querySelectorAll('.floating'); |
|
floatingElements.forEach(el => { |
|
const delay = Math.random() * 5; |
|
el.style.animationDelay = `${delay}s`; |
|
}); |
|
|
|
|
|
window.addEventListener('scroll', function() { |
|
const scrollPosition = window.pageYOffset; |
|
const parallaxElements = document.querySelectorAll('.parallax'); |
|
|
|
parallaxElements.forEach(function(el) { |
|
const speed = parseFloat(el.getAttribute('data-speed')) || 0.5; |
|
const yPos = -(scrollPosition * speed); |
|
el.style.transform = `translate3d(0, ${yPos}px, 0)`; |
|
}); |
|
}); |
|
}); |
|
</script> |
|
<p style="border-radius: 8px; text-align: center; font-size: 12px; color: #fff; margin-top: 16px;position: fixed; left: 8px; bottom: 8px; z-index: 10; background: rgba(0, 0, 0, 0.8); padding: 4px 8px;">Made with <img src="https://enzostvs-deepsite.hf.space/logo.svg" alt="DeepSite Logo" style="width: 16px; height: 16px; vertical-align: middle;display:inline-block;margin-right:3px;filter:brightness(0) invert(1);"><a href="https://enzostvs-deepsite.hf.space" style="color: #fff;text-decoration: underline;" target="_blank" >DeepSite</a> - 🧬 <a href="https://enzostvs-deepsite.hf.space?remix=ysn-rfd/simple" style="color: #fff;text-decoration: underline;" target="_blank" >Remix</a></p></body> |
|
</html> |