diff --git a/New Screen.jpeg b/New Screen.jpeg new file mode 100644 index 0000000..5ef9f99 Binary files /dev/null and b/New Screen.jpeg differ diff --git a/images/analysis.png b/images/analysis.png new file mode 100644 index 0000000..086a2f2 Binary files /dev/null and b/images/analysis.png differ diff --git a/images/rocket.png b/images/rocket.png new file mode 100644 index 0000000..f813cbd Binary files /dev/null and b/images/rocket.png differ diff --git a/images/search-interface-symbol.png b/images/search-interface-symbol.png new file mode 100644 index 0000000..9075295 Binary files /dev/null and b/images/search-interface-symbol.png differ diff --git a/images/socialmediapic.jpg b/images/socialmediapic.jpg new file mode 100644 index 0000000..fea7022 Binary files /dev/null and b/images/socialmediapic.jpg differ diff --git a/index.html b/index.html index 44d3235..471ad9d 100644 --- a/index.html +++ b/index.html @@ -1,3 +1,215 @@ -test.... - -image \ No newline at end of file + + + + + + TrendMiner Landing Page + + + + + + + + + + + +
+ + +
+ +
+

Discover the Latest Trends in Social Media

+

Unleash the power of data to stay ahead in the digital world with TrendMiner.

+ analytics graphic +
+ +
+
+
+ Trend Discovery Icon +
+

Real-time Analytics

+

Access up-to-the-minute data to monitor emerging trends and capitalize on them instantly.

+
+ +
+
+ Analytics Icon +
+

Comprehensive Reports

+

Receive detailed insights with our in-depth reports, tailored to your business.

+
+ +
+
+ Growth Icon +
+

User-friendly Interface

+

Navigate with ease using our intuitive and modern interface designed for all.

+
+
+ +
+ Get Started Now +
+ +
+ + +
+ + + + + + + diff --git a/script.js b/script.js index e69de29..cc9852e 100644 --- a/script.js +++ b/script.js @@ -0,0 +1,3 @@ +// script.js - add any JS interactions later +console.log("TrendMiner landing page loaded."); + diff --git a/socialmediapic.jpg b/socialmediapic.jpg new file mode 100644 index 0000000..fea7022 Binary files /dev/null and b/socialmediapic.jpg differ diff --git a/style.css b/style.css index 8b13789..939a959 100644 --- a/style.css +++ b/style.css @@ -1 +1,187 @@ +/* style.css - TrendMiner Landing Page */ +* { + margin: 0; + padding: 0; + box-sizing: border-box; +} +body { + font-family: "Poppins", sans-serif; + line-height: 1.6; + color: #111; +} + +/* ---------- HEADER ---------- */ +header { + display: flex; + justify-content: space-between; + align-items: center; + padding: 22px 70px; +} + +nav a { + text-decoration: none; + color: #111; + margin-left: 30px; + font-weight: 500; +} + +.logo { + font-size: 20px; + font-weight: 600; + display: flex; + align-items: center; + gap: 8px; +} + +.logo span { + color: #6366F1; + font-weight: 700; +} + +/* ---------- HERO SECTION ---------- */ +.hero { + text-align: center; + padding: 60px 90px; +} + +.hero h1 { + font-size: 32px; + font-weight: 700; + margin-bottom: 16px; +} + +.hero p { + font-size: 16px; + color: #555; + max-width: 650px; + margin: 0 auto 40px auto; +} + +.hero img { + max-width: 700px; + width: 100%; + margin: 0 auto; + border-radius: 14px; +} + +/* ---------- FEATURES SECTION (UPDATED WITH ICON SUPPORT) ---------- */ +.features { + display: grid; + grid-template-columns: repeat(3, 1fr); + gap: 32px; + padding: 60px 90px; +} + +.feature-card { + background: #fff; + padding: 28px; + border-radius: 14px; + box-shadow: 0 6px 18px rgba(0,0,0,0.08); + text-align: center; + transition: transform 0.25s ease; +} + +.feature-card:hover { + transform: translateY(-8px); +} + +/* ✅ Icon styling */ +.feature-card .icon img { + width: 65px; + height: 65px; + margin-bottom: 14px; +} + +.feature-card h3 { + font-size: 18px; + margin-bottom: 10px; +} + +.feature-card p { + font-size: 14px; + color: #666; +} + +/* ---------- CTA ---------- */ +.cta-btn { + background: #f200ff; + padding: 14px 28px; + color: #fff; + border-radius: 8px; + text-decoration: none; + font-weight: 600; + display: inline-block; + margin: 30px auto; +} + +/* ---------- SIGNUP SECTION ---------- */ +.signup-section { + background: white; + max-width: 550px; + margin: 50px auto; + padding: 28px; + border-radius: 14px; + box-shadow: 0 6px 18px rgba(0,0,0,0.08); + text-align: center; +} + +.signup-section input { + width: 100%; + padding: 14px; + border: 1px solid #ddd; + border-radius: 8px; + margin-bottom: 20px; + font-size: 15px; +} + +.signup-btn { + width: 100%; + padding: 14px; + border: 0; + border-radius: 8px; + background: #ff0095; + color: #fff; + font-size: 16px; + font-weight: 600; + cursor: pointer; +} + +/* ---------- FOOTER ---------- */ +footer { + margin-top: 80px; + background: #F1F5FE; + padding: 40px 0; + text-align: center; + color: #555; + font-size: 14px; +} + +.social { + margin-bottom: 12px; +} + +.social i { + margin: 0 8px; + cursor: pointer; +} + +/* ---------- RESPONSIVENESS ---------- */ +@media(max-width: 900px) { + header { + padding: 22px 30px; + } + + nav a { + margin-left: 15px; + } + + .features { + grid-template-columns: 1fr; + padding: 30px 20px; + } + + .feature-card { + width: 100%; + } +}