From 318a9edc27fbc07130229847667d775b5b6213e8 Mon Sep 17 00:00:00 2001
From: Debjit Naskar <45399832+captain-n3m0@users.noreply.github.com>
Date: Fri, 23 Aug 2024 04:12:01 +0530
Subject: [PATCH 01/10] refactor: Improve lamp component styles and
responsiveness
---
src/components/ui/lamp.tsx | 18 +++++++++---------
src/pages/Home.tsx | 11 +++++++----
2 files changed, 16 insertions(+), 13 deletions(-)
diff --git a/src/components/ui/lamp.tsx b/src/components/ui/lamp.tsx
index 6e839eb..4aee29e 100644
--- a/src/components/ui/lamp.tsx
+++ b/src/components/ui/lamp.tsx
@@ -29,10 +29,10 @@ export const LampContainer = ({
style={{
backgroundImage: `conic-gradient(var(--conic-position), var(--tw-gradient-stops))`,
}}
- className="absolute inset-auto right-1/2 h-56 overflow-visible w-[30rem] bg-gradient-conic from-[#B49955] via-transparent to-transparent text-white [--conic-position:from_70deg_at_center_top]"
+ className="absolute inset-auto right-1/2 h-56 overflow-visible w-[80vw] max-w-[30rem] bg-gradient-conic from-[#B49955] via-transparent to-transparent text-white [--conic-position:from_70deg_at_center_top]"
>
-
-
+
+
-
-
+
+
-
+
diff --git a/src/pages/Home.tsx b/src/pages/Home.tsx
index bff67ac..61fb59e 100644
--- a/src/pages/Home.tsx
+++ b/src/pages/Home.tsx
@@ -21,16 +21,19 @@ const Home = () => {
lg:text-5xl lg:leading-[60px]
xl:text-6xl xl:leading-[70px]"
>
- We appreciate your patience but
something really cool is coming soon!
+ We appreciate your patience but
+
+ something really cool is coming soon!
-
);
};
-export default Home;
\ No newline at end of file
+export default Home;
From a079b4bc9a41eaf5d07c19ada854547876d73b11 Mon Sep 17 00:00:00 2001
From: Debjit Naskar <45399832+captain-n3m0@users.noreply.github.com>
Date: Sat, 24 Aug 2024 05:37:27 +0530
Subject: [PATCH 02/10] Removed Penguin Mascot.
---
src/components/ui/lamp.tsx | 26 +++++++++++++-------------
src/pages/Home.tsx | 6 ------
2 files changed, 13 insertions(+), 19 deletions(-)
diff --git a/src/components/ui/lamp.tsx b/src/components/ui/lamp.tsx
index 4aee29e..3432c68 100644
--- a/src/components/ui/lamp.tsx
+++ b/src/components/ui/lamp.tsx
@@ -29,10 +29,10 @@ export const LampContainer = ({
style={{
backgroundImage: `conic-gradient(var(--conic-position), var(--tw-gradient-stops))`,
}}
- className="absolute inset-auto right-1/2 h-56 overflow-visible w-[80vw] max-w-[30rem] bg-gradient-conic from-[#B49955] via-transparent to-transparent text-white [--conic-position:from_70deg_at_center_top]"
+ className="absolute inset-auto right-1/2 h-56 overflow-visible w-[30rem] bg-gradient-conic from-[#B49955] via-transparent to-transparent text-white [--conic-position:from_70deg_at_center_top] sm:w-[20rem] sm:h-40"
>
-
-
+
+
-
-
+
+
-
-
-
+
+
+
-
+
-
diff --git a/src/pages/Home.tsx b/src/pages/Home.tsx
index 61fb59e..bef3a23 100644
--- a/src/pages/Home.tsx
+++ b/src/pages/Home.tsx
@@ -1,6 +1,5 @@
import { LampContainer } from "../components/ui/lamp";
import { motion } from "framer-motion";
-import glowing_penguin from "../assets/images/glowing_penguin.svg";
const Home = () => {
return (
@@ -26,11 +25,6 @@ const Home = () => {
something really cool is coming soon!
-
);
From d89da515b050ce8d7509884a71c24fda9e55963c Mon Sep 17 00:00:00 2001
From: Debjit Naskar <45399832+captain-n3m0@users.noreply.github.com>
Date: Sat, 24 Aug 2024 06:00:29 +0530
Subject: [PATCH 03/10] Revert "Removed Penguin Mascot."
This reverts commit a079b4bc9a41eaf5d07c19ada854547876d73b11.
---
src/components/ui/lamp.tsx | 26 +++++++++++++-------------
src/pages/Home.tsx | 6 ++++++
2 files changed, 19 insertions(+), 13 deletions(-)
diff --git a/src/components/ui/lamp.tsx b/src/components/ui/lamp.tsx
index 3432c68..4aee29e 100644
--- a/src/components/ui/lamp.tsx
+++ b/src/components/ui/lamp.tsx
@@ -29,10 +29,10 @@ export const LampContainer = ({
style={{
backgroundImage: `conic-gradient(var(--conic-position), var(--tw-gradient-stops))`,
}}
- className="absolute inset-auto right-1/2 h-56 overflow-visible w-[30rem] bg-gradient-conic from-[#B49955] via-transparent to-transparent text-white [--conic-position:from_70deg_at_center_top] sm:w-[20rem] sm:h-40"
+ className="absolute inset-auto right-1/2 h-56 overflow-visible w-[80vw] max-w-[30rem] bg-gradient-conic from-[#B49955] via-transparent to-transparent text-white [--conic-position:from_70deg_at_center_top]"
>
-
-
+
+
-
-
+
+
-
-
-
+
+
+
-
+
-
diff --git a/src/pages/Home.tsx b/src/pages/Home.tsx
index bef3a23..61fb59e 100644
--- a/src/pages/Home.tsx
+++ b/src/pages/Home.tsx
@@ -1,5 +1,6 @@
import { LampContainer } from "../components/ui/lamp";
import { motion } from "framer-motion";
+import glowing_penguin from "../assets/images/glowing_penguin.svg";
const Home = () => {
return (
@@ -25,6 +26,11 @@ const Home = () => {
something really cool is coming soon!
+
);
From 60c5a973c37c5023d1ca54adaaf6497ee1c6b0ac Mon Sep 17 00:00:00 2001
From: Debjit Naskar <45399832+captain-n3m0@users.noreply.github.com>
Date: Sat, 24 Aug 2024 06:05:37 +0530
Subject: [PATCH 04/10] Fixed the bug in the lamp component.
---
src/components/ui/lamp.tsx | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/src/components/ui/lamp.tsx b/src/components/ui/lamp.tsx
index 4aee29e..d747525 100644
--- a/src/components/ui/lamp.tsx
+++ b/src/components/ui/lamp.tsx
@@ -17,7 +17,7 @@ export const LampContainer = ({
className
)}
>
-
+
Date: Sat, 24 Aug 2024 06:09:24 +0530
Subject: [PATCH 05/10] Fixed a bug.
---
src/pages/Home.tsx | 6 ------
1 file changed, 6 deletions(-)
diff --git a/src/pages/Home.tsx b/src/pages/Home.tsx
index 61fb59e..bef3a23 100644
--- a/src/pages/Home.tsx
+++ b/src/pages/Home.tsx
@@ -1,6 +1,5 @@
import { LampContainer } from "../components/ui/lamp";
import { motion } from "framer-motion";
-import glowing_penguin from "../assets/images/glowing_penguin.svg";
const Home = () => {
return (
@@ -26,11 +25,6 @@ const Home = () => {
something really cool is coming soon!
-
);
From d0a631642116cbc307fe26c38b685f737bfccb52 Mon Sep 17 00:00:00 2001
From: Debjit Naskar <45399832+captain-n3m0@users.noreply.github.com>
Date: Sat, 24 Aug 2024 06:19:33 +0530
Subject: [PATCH 06/10] refactor: Improve landing page styles.
---
src/pages/Home.tsx | 37 +++++++++++++++++++------------------
1 file changed, 19 insertions(+), 18 deletions(-)
diff --git a/src/pages/Home.tsx b/src/pages/Home.tsx
index bef3a23..37519a7 100644
--- a/src/pages/Home.tsx
+++ b/src/pages/Home.tsx
@@ -3,28 +3,29 @@ import { motion } from "framer-motion";
const Home = () => {
return (
-
-
-
-
+
+
- We appreciate your patience but
-
- something really cool is coming soon!
-
-
+ >
+ We appreciate your patience but
+
+ something really cool is coming soon!
+
+
+
+ © ArkTech
);
From c59ff4afb2ec0316881d5a399b060abc1b3df817 Mon Sep 17 00:00:00 2001
From: Debjit Naskar <45399832+captain-n3m0@users.noreply.github.com>
Date: Sat, 24 Aug 2024 06:21:52 +0530
Subject: [PATCH 07/10] refactor: Update font in Home component for better
readability
---
src/pages/Home.tsx | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/src/pages/Home.tsx b/src/pages/Home.tsx
index 37519a7..645e7fd 100644
--- a/src/pages/Home.tsx
+++ b/src/pages/Home.tsx
@@ -3,7 +3,7 @@ import { motion } from "framer-motion";
const Home = () => {
return (
-
+
{
duration: 0.8,
ease: "easeInOut",
}}
- className="text-center text-white font-product-sans leading-tight
+ className="text-center text-white font-semibold leading-tight
sm:text-3xl sm:leading-[40px]
md:text-4xl md:leading-[50px]
lg:text-5xl lg:leading-[60px]
From 491afe6e48c776b0535dd9a2a4357738000ab748 Mon Sep 17 00:00:00 2001
From: Debjit Naskar <45399832+captain-n3m0@users.noreply.github.com>
Date: Sat, 24 Aug 2024 06:30:24 +0530
Subject: [PATCH 08/10] refactor: Update font in Home component for better
readability
---
src/pages/Home.tsx | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/src/pages/Home.tsx b/src/pages/Home.tsx
index 645e7fd..d4d7e72 100644
--- a/src/pages/Home.tsx
+++ b/src/pages/Home.tsx
@@ -13,7 +13,7 @@ const Home = () => {
duration: 0.8,
ease: "easeInOut",
}}
- className="text-center text-white font-semibold leading-tight
+ className="text-center text-white font-semibold font-manropeleading-tight
sm:text-3xl sm:leading-[40px]
md:text-4xl md:leading-[50px]
lg:text-5xl lg:leading-[60px]
From e624e28d1247fd0ebeeb972eca526ce149839106 Mon Sep 17 00:00:00 2001
From: Debjit Naskar <45399832+captain-n3m0@users.noreply.github.com>
Date: Sun, 25 Aug 2024 01:25:35 +0530
Subject: [PATCH 09/10] Update Home.tsx
---
src/pages/Home.tsx | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/src/pages/Home.tsx b/src/pages/Home.tsx
index d4d7e72..54151eb 100644
--- a/src/pages/Home.tsx
+++ b/src/pages/Home.tsx
@@ -13,7 +13,7 @@ const Home = () => {
duration: 0.8,
ease: "easeInOut",
}}
- className="text-center text-white font-semibold font-manropeleading-tight
+ className="text-center text-white font-semibold font-manrope leading-tight
sm:text-3xl sm:leading-[40px]
md:text-4xl md:leading-[50px]
lg:text-5xl lg:leading-[60px]
From 6ea201f3b45042ca20a373ece342c0f67e8a60f9 Mon Sep 17 00:00:00 2001
From: Debjit Naskar <45399832+captain-n3m0@users.noreply.github.com>
Date: Sun, 25 Aug 2024 01:51:08 +0530
Subject: [PATCH 10/10] refactor: Update lamp component styles and
responsiveness
---
src/components/ui/lamp.tsx | 44 +++++++++++++++++++-------------------
src/pages/Home.tsx | 5 +----
2 files changed, 23 insertions(+), 26 deletions(-)
diff --git a/src/components/ui/lamp.tsx b/src/components/ui/lamp.tsx
index d747525..6b1b15d 100644
--- a/src/components/ui/lamp.tsx
+++ b/src/components/ui/lamp.tsx
@@ -17,10 +17,10 @@ export const LampContainer = ({
className
)}
>
-
+
-
-
+
+
-
-
+
+
-
-
-
+
+
+
-
+
-
diff --git a/src/pages/Home.tsx b/src/pages/Home.tsx
index 54151eb..bc00f55 100644
--- a/src/pages/Home.tsx
+++ b/src/pages/Home.tsx
@@ -14,10 +14,7 @@ const Home = () => {
ease: "easeInOut",
}}
className="text-center text-white font-semibold font-manrope leading-tight
- sm:text-3xl sm:leading-[40px]
- md:text-4xl md:leading-[50px]
- lg:text-5xl lg:leading-[60px]
- xl:text-6xl xl:leading-[70px]"
+ text-3xl sm:text-4xl md:text-5xl lg:text-6xl xl:text-7xl"
>
We appreciate your patience but