diff --git a/.vscode/settings.json b/.vscode/settings.json new file mode 100644 index 0000000..6f3a291 --- /dev/null +++ b/.vscode/settings.json @@ -0,0 +1,3 @@ +{ + "liveServer.settings.port": 5501 +} \ No newline at end of file diff --git a/0916.mp4 b/0916.mp4 new file mode 100644 index 0000000..4b8a7d6 Binary files /dev/null and b/0916.mp4 differ diff --git a/CSS.css b/CSS.css new file mode 100644 index 0000000..2e66ce7 --- /dev/null +++ b/CSS.css @@ -0,0 +1,42 @@ +:root { + --color-bg: #0a0a0a; /* dark background */ + --color-primary: #003366; /* dark blue accent (changed) */ + --color-text: #f5f5f5; /* near-white text */ + --color-muted: #9a9a9a; /* muted gray */ +} + +/* keep header fixed at top while scrolling and avoid content overlap */ +header { + position: fixed; + top: 0; + left: 0; + right: 0; + height: 64px; /* consistent header height */ + padding: 1rem 2rem; + display: flex; + align-items: center; + justify-content: space-between; + background: transparent; /* transparent so video shows through */ + z-index: 1000; +} + +/* ensure page content begins below the fixed header */ +body { + font-family: 'Inter', sans-serif; + background: var(--color-bg); + color: var(--color-text); + padding-top: 64px; /* same as header height */ +} + +/* keep video behind everything */ +.background-video { + position: fixed; + top: 0; + left: 0; + width: 100vw; + height: 100vh; + object-fit: cover; + z-index: 0; + opacity: 0.7; + pointer-events: none; +} diff --git a/HTML.html b/HTML.html new file mode 100644 index 0000000..4e213e2 --- /dev/null +++ b/HTML.html @@ -0,0 +1,156 @@ + + + + + + + + + Your Brand + + + + + + + +
+ + +
+ Login + Sign Up +
+
+ +
+
+

All-in-One Platform

+

Manage your money, payments, and lifestyle in one place. Dummy text for now.

+
+
+ +
+

Our Features

+
+
Feature One
+
Feature Two
+
Feature Three
+
+
+ +
+

How It Works

+
+
01. Sign Up
+
02. Add
+
03. Method
+
04. Review
+
05. Done
+
+
+ +
+

What People Say

+
+
"Great app!" – User A
+
"Fast and simple." – User B
+
"Love the design." – User C
+
+
+ + + + + + + diff --git a/logo 1.png b/logo 1.png new file mode 100644 index 0000000..d50912a Binary files /dev/null and b/logo 1.png differ