Spaces:
Running
Running
Florin Bobiș
commited on
Commit
·
fcfb631
1
Parent(s):
6528c1e
landing done
Browse files
src/components/footer.tsx
CHANGED
@@ -1,7 +1,7 @@
|
|
1 |
const Footer = () => {
|
2 |
return (
|
3 |
-
<footer className="sticky bottom-0 flex h-10 items-center gap-4 bg-
|
4 |
-
<
|
5 |
</footer>
|
6 |
);
|
7 |
};
|
|
|
1 |
const Footer = () => {
|
2 |
return (
|
3 |
+
<footer className="sticky bottom-0 flex h-10 items-center gap-4 bg-background/30 backdrop-blur px-4 md:px-6 z-30">
|
4 |
+
<span className="text-sm dark:text-white">© ATOM 2024</span>
|
5 |
</footer>
|
6 |
);
|
7 |
};
|
src/components/header.tsx
CHANGED
@@ -6,7 +6,7 @@ import { Button } from "./ui/button";
|
|
6 |
|
7 |
const Header = () => {
|
8 |
return (
|
9 |
-
<header className="sticky top-0 flex h-16 items-center gap-4 bg-background/30 backdrop-blur px-4 md:px-6 z-30">
|
10 |
<Navbar />
|
11 |
<Sidebar />
|
12 |
<div className="flex w-full md:w-auto justify-end gap-4 md:ml-auto md:gap-2 lg:gap-4">
|
|
|
6 |
|
7 |
const Header = () => {
|
8 |
return (
|
9 |
+
<header className="sticky top-0 flex h-16 items-center border-b shadow-md gap-4 bg-background/30 backdrop-blur px-4 md:px-6 z-30">
|
10 |
<Navbar />
|
11 |
<Sidebar />
|
12 |
<div className="flex w-full md:w-auto justify-end gap-4 md:ml-auto md:gap-2 lg:gap-4">
|
src/components/welcome-section.tsx
CHANGED
@@ -8,7 +8,7 @@ import { StarsBackground } from "./ui/stars-background";
|
|
8 |
const WelcomeSection = () => {
|
9 |
const { theme } = useTheme();
|
10 |
return (
|
11 |
-
<section className="h-screen w-full
|
12 |
<h1
|
13 |
className="md:text-7xl text-3xl lg:text-9xl font-bold text-center text-white relative z-20
|
14 |
bg-clip-text text-transparent bg-gradient-to-b from-neutral-900 to-neutral-700 dark:from-neutral-600 dark:to-white"
|
@@ -32,13 +32,11 @@ const WelcomeSection = () => {
|
|
32 |
particleColor="#FFFFFF"
|
33 |
/>
|
34 |
|
35 |
-
|
36 |
-
|
37 |
-
|
38 |
-
|
39 |
-
|
40 |
-
</h3>
|
41 |
-
}
|
42 |
|
43 |
{theme === "dark" && (
|
44 |
/* Radial Gradient to prevent sharp edges */
|
|
|
8 |
const WelcomeSection = () => {
|
9 |
const { theme } = useTheme();
|
10 |
return (
|
11 |
+
<section className="h-screen w-full dark:bg-black flex flex-col items-center justify-center overflow-hidden">
|
12 |
<h1
|
13 |
className="md:text-7xl text-3xl lg:text-9xl font-bold text-center text-white relative z-20
|
14 |
bg-clip-text text-transparent bg-gradient-to-b from-neutral-900 to-neutral-700 dark:from-neutral-600 dark:to-white"
|
|
|
32 |
particleColor="#FFFFFF"
|
33 |
/>
|
34 |
|
35 |
+
<h3 className="mt-[-9rem] pb-1 md:text-xl text-sm lg:text-3xl bg-clip-text text-transparent bg-gradient-to-b from-gray-800 to-gray-500 dark:from-neutral-200 dark:to-neutral-600 text-center font-sans font-bold relative z-20">
|
36 |
+
Your one-stop shop
|
37 |
+
<br />
|
38 |
+
for gravity-free design...
|
39 |
+
</h3>
|
|
|
|
|
40 |
|
41 |
{theme === "dark" && (
|
42 |
/* Radial Gradient to prevent sharp edges */
|