make the lihter so its easier to read
Browse files- components/footer.js +14 -14
- components/navbar.js +3 -3
- index.html +16 -18
- style.css +2 -2
components/footer.js
CHANGED
|
@@ -5,11 +5,11 @@ class CustomFooter extends HTMLElement {
|
|
| 5 |
<style>
|
| 6 |
:host {
|
| 7 |
display: block;
|
| 8 |
-
background-color: #
|
| 9 |
-
color: #
|
| 10 |
padding: 4rem 2rem;
|
| 11 |
-
border-top: 1px solid rgba(
|
| 12 |
-
|
| 13 |
|
| 14 |
.footer-container {
|
| 15 |
max-width: 1280px;
|
|
@@ -32,8 +32,8 @@ class CustomFooter extends HTMLElement {
|
|
| 32 |
font-weight: 700;
|
| 33 |
font-size: 1.25rem;
|
| 34 |
margin-bottom: 1.5rem;
|
| 35 |
-
color:
|
| 36 |
-
|
| 37 |
|
| 38 |
.footer-logo-icon {
|
| 39 |
background: linear-gradient(135deg, #FF7B25, #FF9E53);
|
|
@@ -53,8 +53,8 @@ class CustomFooter extends HTMLElement {
|
|
| 53 |
}
|
| 54 |
|
| 55 |
.social-link {
|
| 56 |
-
background-color: #
|
| 57 |
-
|
| 58 |
height: 2.5rem;
|
| 59 |
border-radius: 50%;
|
| 60 |
display: flex;
|
|
@@ -64,13 +64,13 @@ class CustomFooter extends HTMLElement {
|
|
| 64 |
}
|
| 65 |
|
| 66 |
.social-link:hover {
|
| 67 |
-
background-color: #
|
| 68 |
-
|
| 69 |
|
| 70 |
.footer-heading {
|
| 71 |
font-weight: 600;
|
| 72 |
-
color:
|
| 73 |
-
|
| 74 |
font-size: 1.125rem;
|
| 75 |
}
|
| 76 |
|
|
@@ -85,8 +85,8 @@ class CustomFooter extends HTMLElement {
|
|
| 85 |
}
|
| 86 |
|
| 87 |
.footer-link:hover {
|
| 88 |
-
color:
|
| 89 |
-
|
| 90 |
|
| 91 |
.footer-bottom {
|
| 92 |
max-width: 1280px;
|
|
|
|
| 5 |
<style>
|
| 6 |
:host {
|
| 7 |
display: block;
|
| 8 |
+
background-color: #f8f8f8;
|
| 9 |
+
color: #555;
|
| 10 |
padding: 4rem 2rem;
|
| 11 |
+
border-top: 1px solid rgba(0, 0, 0, 0.1);
|
| 12 |
+
}
|
| 13 |
|
| 14 |
.footer-container {
|
| 15 |
max-width: 1280px;
|
|
|
|
| 32 |
font-weight: 700;
|
| 33 |
font-size: 1.25rem;
|
| 34 |
margin-bottom: 1.5rem;
|
| 35 |
+
color: #222;
|
| 36 |
+
}
|
| 37 |
|
| 38 |
.footer-logo-icon {
|
| 39 |
background: linear-gradient(135deg, #FF7B25, #FF9E53);
|
|
|
|
| 53 |
}
|
| 54 |
|
| 55 |
.social-link {
|
| 56 |
+
background-color: #e5e5e5;
|
| 57 |
+
width: 2.5rem;
|
| 58 |
height: 2.5rem;
|
| 59 |
border-radius: 50%;
|
| 60 |
display: flex;
|
|
|
|
| 64 |
}
|
| 65 |
|
| 66 |
.social-link:hover {
|
| 67 |
+
background-color: #d5d5d5;
|
| 68 |
+
}
|
| 69 |
|
| 70 |
.footer-heading {
|
| 71 |
font-weight: 600;
|
| 72 |
+
color: #222;
|
| 73 |
+
margin-bottom: 1.5rem;
|
| 74 |
font-size: 1.125rem;
|
| 75 |
}
|
| 76 |
|
|
|
|
| 85 |
}
|
| 86 |
|
| 87 |
.footer-link:hover {
|
| 88 |
+
color: #222;
|
| 89 |
+
}
|
| 90 |
|
| 91 |
.footer-bottom {
|
| 92 |
max-width: 1280px;
|
components/navbar.js
CHANGED
|
@@ -10,9 +10,9 @@ class CustomNavbar extends HTMLElement {
|
|
| 10 |
top: 0;
|
| 11 |
z-index: 50;
|
| 12 |
backdrop-filter: blur(10px);
|
| 13 |
-
background-color: rgba(
|
| 14 |
-
border-bottom: 1px solid rgba(
|
| 15 |
-
|
| 16 |
|
| 17 |
nav {
|
| 18 |
max-width: 1280px;
|
|
|
|
| 10 |
top: 0;
|
| 11 |
z-index: 50;
|
| 12 |
backdrop-filter: blur(10px);
|
| 13 |
+
background-color: rgba(255, 255, 255, 0.9);
|
| 14 |
+
border-bottom: 1px solid rgba(0, 0, 0, 0.1);
|
| 15 |
+
}
|
| 16 |
|
| 17 |
nav {
|
| 18 |
max-width: 1280px;
|
index.html
CHANGED
|
@@ -22,16 +22,16 @@
|
|
| 22 |
}
|
| 23 |
</script>
|
| 24 |
</head>
|
| 25 |
-
<body class="bg-gray-
|
| 26 |
-
|
| 27 |
|
| 28 |
<main class="container mx-auto px-4 py-12">
|
| 29 |
<!-- Hero Section -->
|
| 30 |
<section class="flex flex-col lg:flex-row items-center gap-12 mb-24">
|
| 31 |
<div class="lg:w-1/2">
|
| 32 |
<h1 class="text-5xl font-bold mb-6">Revolutionizing Kitchens with <span class="text-primary">AI Robotics</span></h1>
|
| 33 |
-
|
| 34 |
-
|
| 35 |
<a href="#contact" class="bg-primary hover:bg-orange-600 text-white font-semibold px-6 py-3 rounded-lg transition">Invest With Us</a>
|
| 36 |
<a href="#education" class="bg-gray-700 hover:bg-gray-600 text-white font-semibold px-6 py-3 rounded-lg transition">View Classes</a>
|
| 37 |
</div>
|
|
@@ -47,13 +47,13 @@
|
|
| 47 |
<section class="mb-24">
|
| 48 |
<h2 class="text-3xl font-bold mb-12 text-center">Our <span class="text-primary">Technology</span></h2>
|
| 49 |
<div class="grid md:grid-cols-3 gap-8">
|
| 50 |
-
<div class="bg-
|
| 51 |
-
|
| 52 |
<i data-feather="cpu" class="text-primary w-8 h-8"></i>
|
| 53 |
</div>
|
| 54 |
<h3 class="text-xl font-semibold mb-2">NVIDIA Jetson Powered</h3>
|
| 55 |
-
<p class="text-gray-
|
| 56 |
-
|
| 57 |
<div class="bg-gray-800 p-6 rounded-xl hover:bg-gray-700 transition">
|
| 58 |
<div class="bg-primary/10 p-3 rounded-lg inline-block mb-4">
|
| 59 |
<i data-feather="activity" class="text-primary w-8 h-8"></i>
|
|
@@ -76,17 +76,16 @@
|
|
| 76 |
<div class="flex flex-col lg:flex-row items-center gap-12">
|
| 77 |
<div class="lg:w-1/2 order-2 lg:order-1">
|
| 78 |
<h2 class="text-3xl font-bold mb-6">Robotics <span class="text-primary">Education</span></h2>
|
| 79 |
-
<p class="text-xl mb-8 text-gray-
|
| 80 |
-
|
| 81 |
-
<div class="space-y-6">
|
| 82 |
<div class="flex items-start gap-4">
|
| 83 |
<div class="bg-primary/10 p-2 rounded-lg mt-1">
|
| 84 |
<i data-feather="user" class="text-primary w-5 h-5"></i>
|
| 85 |
</div>
|
| 86 |
<div>
|
| 87 |
<h3 class="font-semibold">Elementary School</h3>
|
| 88 |
-
|
| 89 |
-
|
| 90 |
</div>
|
| 91 |
<div class="flex items-start gap-4">
|
| 92 |
<div class="bg-primary/10 p-2 rounded-lg mt-1">
|
|
@@ -118,12 +117,11 @@
|
|
| 118 |
|
| 119 |
<!-- Investors Section -->
|
| 120 |
<section id="contact" class="mb-24">
|
| 121 |
-
<div class="bg-
|
| 122 |
-
|
| 123 |
<h2 class="text-3xl font-bold mb-4">Join Our <span class="text-primary">Mission</span></h2>
|
| 124 |
-
<p class="text-xl mb-8 text-gray-
|
| 125 |
-
|
| 126 |
-
<form class="space-y-4">
|
| 127 |
<div class="grid md:grid-cols-2 gap-4">
|
| 128 |
<input type="text" placeholder="Name" class="bg-gray-700 px-4 py-3 rounded-lg focus:ring-2 focus:ring-primary outline-none">
|
| 129 |
<input type="email" placeholder="Email" class="bg-gray-700 px-4 py-3 rounded-lg focus:ring-2 focus:ring-primary outline-none">
|
|
|
|
| 22 |
}
|
| 23 |
</script>
|
| 24 |
</head>
|
| 25 |
+
<body class="bg-gray-50 text-gray-800 min-h-screen">
|
| 26 |
+
<custom-navbar></custom-navbar>
|
| 27 |
|
| 28 |
<main class="container mx-auto px-4 py-12">
|
| 29 |
<!-- Hero Section -->
|
| 30 |
<section class="flex flex-col lg:flex-row items-center gap-12 mb-24">
|
| 31 |
<div class="lg:w-1/2">
|
| 32 |
<h1 class="text-5xl font-bold mb-6">Revolutionizing Kitchens with <span class="text-primary">AI Robotics</span></h1>
|
| 33 |
+
<p class="text-xl mb-8 text-gray-600">Appliant Robotics brings NVIDIA Jetson-powered robotic arms to your kitchen, automating cooking tasks with precision and intelligence.</p>
|
| 34 |
+
<div class="flex gap-4">
|
| 35 |
<a href="#contact" class="bg-primary hover:bg-orange-600 text-white font-semibold px-6 py-3 rounded-lg transition">Invest With Us</a>
|
| 36 |
<a href="#education" class="bg-gray-700 hover:bg-gray-600 text-white font-semibold px-6 py-3 rounded-lg transition">View Classes</a>
|
| 37 |
</div>
|
|
|
|
| 47 |
<section class="mb-24">
|
| 48 |
<h2 class="text-3xl font-bold mb-12 text-center">Our <span class="text-primary">Technology</span></h2>
|
| 49 |
<div class="grid md:grid-cols-3 gap-8">
|
| 50 |
+
<div class="bg-white p-6 rounded-xl hover:bg-gray-100 transition shadow-md">
|
| 51 |
+
<div class="bg-primary/10 p-3 rounded-lg inline-block mb-4">
|
| 52 |
<i data-feather="cpu" class="text-primary w-8 h-8"></i>
|
| 53 |
</div>
|
| 54 |
<h3 class="text-xl font-semibold mb-2">NVIDIA Jetson Powered</h3>
|
| 55 |
+
<p class="text-gray-600">Utilizing the cutting-edge Orin Nano platform for real-time AI processing in compact kitchen spaces.</p>
|
| 56 |
+
</div>
|
| 57 |
<div class="bg-gray-800 p-6 rounded-xl hover:bg-gray-700 transition">
|
| 58 |
<div class="bg-primary/10 p-3 rounded-lg inline-block mb-4">
|
| 59 |
<i data-feather="activity" class="text-primary w-8 h-8"></i>
|
|
|
|
| 76 |
<div class="flex flex-col lg:flex-row items-center gap-12">
|
| 77 |
<div class="lg:w-1/2 order-2 lg:order-1">
|
| 78 |
<h2 class="text-3xl font-bold mb-6">Robotics <span class="text-primary">Education</span></h2>
|
| 79 |
+
<p class="text-xl mb-8 text-gray-600">We're passionate about inspiring the next generation of roboticists through our hands-on educational programs.</p>
|
| 80 |
+
<div class="space-y-6">
|
|
|
|
| 81 |
<div class="flex items-start gap-4">
|
| 82 |
<div class="bg-primary/10 p-2 rounded-lg mt-1">
|
| 83 |
<i data-feather="user" class="text-primary w-5 h-5"></i>
|
| 84 |
</div>
|
| 85 |
<div>
|
| 86 |
<h3 class="font-semibold">Elementary School</h3>
|
| 87 |
+
<p class="text-gray-500">Introduction to basic robotics concepts through fun, interactive projects.</p>
|
| 88 |
+
</div>
|
| 89 |
</div>
|
| 90 |
<div class="flex items-start gap-4">
|
| 91 |
<div class="bg-primary/10 p-2 rounded-lg mt-1">
|
|
|
|
| 117 |
|
| 118 |
<!-- Investors Section -->
|
| 119 |
<section id="contact" class="mb-24">
|
| 120 |
+
<div class="bg-white rounded-2xl p-8 md:p-12 shadow-md">
|
| 121 |
+
<div class="max-w-2xl mx-auto text-center">
|
| 122 |
<h2 class="text-3xl font-bold mb-4">Join Our <span class="text-primary">Mission</span></h2>
|
| 123 |
+
<p class="text-xl mb-8 text-gray-600">We're seeking visionary investors and talented engineers to help scale our technology and educational programs.</p>
|
| 124 |
+
<form class="space-y-4">
|
|
|
|
| 125 |
<div class="grid md:grid-cols-2 gap-4">
|
| 126 |
<input type="text" placeholder="Name" class="bg-gray-700 px-4 py-3 rounded-lg focus:ring-2 focus:ring-primary outline-none">
|
| 127 |
<input type="email" placeholder="Email" class="bg-gray-700 px-4 py-3 rounded-lg focus:ring-2 focus:ring-primary outline-none">
|
style.css
CHANGED
|
@@ -1,9 +1,9 @@
|
|
| 1 |
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&display=swap');
|
| 2 |
-
|
| 3 |
body {
|
| 4 |
font-family: 'Inter', sans-serif;
|
|
|
|
|
|
|
| 5 |
}
|
| 6 |
-
|
| 7 |
/* Custom scrollbar */
|
| 8 |
::-webkit-scrollbar {
|
| 9 |
width: 8px;
|
|
|
|
| 1 |
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&display=swap');
|
|
|
|
| 2 |
body {
|
| 3 |
font-family: 'Inter', sans-serif;
|
| 4 |
+
background-color: #f5f5f5;
|
| 5 |
+
color: #333;
|
| 6 |
}
|
|
|
|
| 7 |
/* Custom scrollbar */
|
| 8 |
::-webkit-scrollbar {
|
| 9 |
width: 8px;
|