diff --git a/src/app.css b/src/app.css index 9e09ee9..bf7b1a1 100644 --- a/src/app.css +++ b/src/app.css @@ -339,3 +339,59 @@ body { padding-top: 24px; } } + +.nav-links { + display: flex; + gap: 16px; +} + +.nav-links a, +.footer-links a { + text-decoration: none; + color: #334155; + font-weight: 600; +} + +.nav-links a:hover, +.footer-links a:hover { + color: var(--brand-orange); +} + +.footer { + margin-top: 20px; + border-top: 1px solid rgba(148, 163, 184, 0.25); + background: rgba(255, 255, 255, 0.72); +} + +.footer-row { + min-height: 72px; + display: flex; + align-items: center; + justify-content: space-between; + gap: 10px; +} + +.footer-row p { + margin: 0; + color: #64748b; + font-size: 14px; +} + +.footer-links { + display: flex; + gap: 14px; +} + +@media (max-width: 900px) { + .nav-row { + flex-wrap: wrap; + padding: 10px 0; + } + + .footer-row { + flex-direction: column; + justify-content: center; + align-items: flex-start; + padding: 12px 0; + } +} diff --git a/src/routes/about.tsx b/src/routes/about.tsx new file mode 100644 index 0000000..3beeade --- /dev/null +++ b/src/routes/about.tsx @@ -0,0 +1,30 @@ +import { A } from '@solidjs/router'; + +export default function AboutPage() { + return ( +
+

About NXTGAUGE

+

Trust-First Marketplace and Hiring Platform

+

+ NXTGAUGE helps customers, professionals, companies, and jobseekers connect through role-specific onboarding, + verification checks, and runtime-configured workflows. +

+ +
+

What We Focus On

+

Role separation, verified identities, and city-by-city controlled launch quality.

+ +
+ +
+ Start As Customer + Contact Us +
+
+ ); +} diff --git a/src/routes/contact.tsx b/src/routes/contact.tsx new file mode 100644 index 0000000..9abedfa --- /dev/null +++ b/src/routes/contact.tsx @@ -0,0 +1,26 @@ +import { A } from '@solidjs/router'; + +export default function ContactPage() { + return ( +
+

Contact NXTGAUGE

+

We Are Here To Help

+

For onboarding, verification, or launch support, contact our team.

+ +
+

Support Details

+

Email: support@nxtgauge.com

+

Launch City: Chennai, India

+

Support Window: 10:00 AM - 7:00 PM IST

+
+ +
+

Quick Actions

+ +
+
+ ); +} diff --git a/src/routes/index.tsx b/src/routes/index.tsx index 7f36488..f043f0c 100644 --- a/src/routes/index.tsx +++ b/src/routes/index.tsx @@ -45,6 +45,10 @@ export default function Home() {
+ + ); }