diff --git a/htdocs/assets/extra-style.css b/htdocs/assets/extra-style.css index cbe5274..0e06a14 100644 --- a/htdocs/assets/extra-style.css +++ b/htdocs/assets/extra-style.css @@ -44,11 +44,11 @@ background: #38BDF8; animation: slide-up 0.5s ease-in-out; } -.aboutcontainer:hover::before { +.hoverAnimatedContainer:hover::before { opacity: 1; } -.aboutcontainer::before { +.hoverAnimatedContainer::before { background: radial-gradient(600px circle at var(--mouse-x) var(--mouse-y), rgba(255,255,255,0.06), transparent 40%); border-radius: inherit; content: ""; @@ -57,7 +57,6 @@ background: #38BDF8; position: absolute; left: 0px; top: 0px; - z-index: 2; opacity: 0; transition: opacity 500ms; } diff --git a/htdocs/assets/images/basirhat.webp b/htdocs/assets/images/basirhat.webp new file mode 100644 index 0000000..56dbeef Binary files /dev/null and b/htdocs/assets/images/basirhat.webp differ diff --git a/htdocs/assets/js/core-animation.js b/htdocs/assets/js/core-animation.js new file mode 100644 index 0000000..e69de29 diff --git a/htdocs/assets/style.css b/htdocs/assets/style.css index b3dcec0..bff50bb 100644 --- a/htdocs/assets/style.css +++ b/htdocs/assets/style.css @@ -917,6 +917,10 @@ video { margin-top: 4rem; } +.mt-2 { + margin-top: 0.5rem; +} + .mt-28 { margin-top: 7rem; } @@ -1058,6 +1062,10 @@ video { width: 0.5rem; } +.w-\[100px\] { + width: 100px; +} + .w-\[200px\] { width: 200px; } @@ -1382,6 +1390,11 @@ video { border-top-color: rgb(56 189 248 / var(--tw-border-opacity)); } +.border-b-accent_primary { + --tw-border-opacity: 1; + border-bottom-color: rgb(56 189 248 / var(--tw-border-opacity)); +} + .bg-\[rgba\(0\2c _0\2c _0\2c _0\.4\)\] { background-color: rgba(0, 0, 0, 0.4); } diff --git a/htdocs/contact.php b/htdocs/contact.php index cf2b03b..9f323b6 100644 --- a/htdocs/contact.php +++ b/htdocs/contact.php @@ -40,27 +40,49 @@ require 'core/query_functions.php';
-
-

My Contact Details

-
-
- -

+91 8695174974

+
+
+

My Contact Details

+
+
+ +

+91 8695174974

+
+
+ +

hey@neosubhamoy.com

+
+
+ +

t.me/neo_subhamoy

+
-
- -

hey@neosubhamoy.com

-
-
- -

t.me/neo_subhamoy

+
+
+
+ + + + Address + + + +
+
+ basirhat +
+
+
Basirhat, North 24 Parganas, West Bengal, India, 743411
+

Basirhat is a city of West Bengal, India. It is located on the banks of the Ichamati River

+
+
-

  Contact Form

+

  Contact Form

Your Full Name @@ -89,5 +111,20 @@ require 'core/query_functions.php'; + \ No newline at end of file diff --git a/htdocs/home.php b/htdocs/home.php index 0728462..3cc18d3 100644 --- a/htdocs/home.php +++ b/htdocs/home.php @@ -60,7 +60,7 @@ require 'core/query_functions.php';
-
+

About Me

Hey there! I'm Subhamoy, an 18-year-old tech enthusiast, Self-taught Full Stacked Web, Android Developer and UI/UX Designer. Crafting modern Websites and Android apps for more than 5 years. Delivering industry grade user experiences that are not only visually stunning but also intuitive. Coding is my passion, and I pour my heart and soul into every line of code I write and every pixel I place. The digital realm is my canvas, and I'm determined to leave a lasting impact. So, get ready to witness the extraordinary, redefined future of technology with me

@@ -248,7 +248,7 @@ require 'core/query_functions.php'; target.style.setProperty("--mouse-y",`${y}px`); } - for(const card of document.querySelectorAll(".aboutcontainer")){ + for(const card of document.querySelectorAll(".hoverAnimatedContainer")){ card.onmousemove = e => handleOnMouseMove(e); }