From 117bf6881579998a7a7905789ad9d85d52110e4e Mon Sep 17 00:00:00 2001 From: Amishmaqbool Date: Mon, 15 Sep 2025 18:00:40 +0500 Subject: [PATCH] Partner page setup --- app/partners/page.tsx | 312 +++++++++++++++++++++++++++--------------- default.conf | 4 + 2 files changed, 208 insertions(+), 108 deletions(-) diff --git a/app/partners/page.tsx b/app/partners/page.tsx index ee93fbd..f22aa19 100644 --- a/app/partners/page.tsx +++ b/app/partners/page.tsx @@ -1,34 +1,42 @@ -"use client" - -import { Button } from "../../components/ui/button" -import { Card } from "../../components/ui/card" -import { Badge } from "../../components/ui/badge" -import { Navigation } from "../../components/layout/Navigation" -import { StellarStackLogo, TekiesoftLogo } from "../../components/logos/partners" +"use client"; +import Link from "next/link"; +import { Button } from "../../components/ui/button"; +import { Card } from "../../components/ui/card"; +import { Badge } from "../../components/ui/badge"; +import { Navigation } from "../../components/layout/Navigation"; +import { + StellarStackLogo, + TekiesoftLogo, +} from "../../components/logos/partners"; export default function PartnersPage() { return (
- + {/* Hero Section */} -
+

Hire a Nexlayer Partner

- Whether you're just getting started with Nexlayer or looking to implement advanced functionality, - our partners have the expertise and industry knowledge to deliver the right solution. + Whether you're just getting started with Nexlayer or looking to + implement advanced functionality, our partners have the expertise + and industry knowledge to deliver the right solution.

-

Get Paired

- We match your application with the perfect builder or you can contact expert builders directly + We match your application with the perfect builder or you can + contact expert builders directly

@@ -78,7 +89,8 @@ export default function PartnersPage() {

Maintain Control

- Edit your project with Nexlayer anytime and re-engage with expert builders as needed + Edit your project with Nexlayer anytime and re-engage with + expert builders as needed

@@ -93,120 +105,204 @@ export default function PartnersPage() {

Connect directly with our partners below. Can't find the right fit?{" "} - Let us help match you with the perfect partner. + Let us help match you with + the perfect partner.

- +
{/* Partner 1 */} - - - Preferred Partner - -
-
- + +
+ + Preferred Partner + +
+
+ +
+
+

+ StellarStack +

+

+ British Columbia, Canada • English +

+
-
-

StellarStack

-

British Columbia, Canada • English

+
+

+ Budget: Starting from + $1500 +

+

+ Hourly Rate: $55/hr +

+ +

+ Website: + www.stellarstack.co/ +

+ +

+ Nexlayer Projects:37 +

+
+
+

+ Key Services: +

+
    +
  • • Rapid MVP Development
  • +
  • • AUI/UX Design
  • +
  • • Full-Stack Application Development
  • +
  • • API integrations
  • +
  • • AI/LLM model integration
  • +
  • • Cloud infrastructure management
  • +
-
-

Budget: Starting from $1500

-

Hourly Rate: $55/hr

-

Website:www.stellarstack.co/

-

Nexlayer Projects:37

-
-
-

Key Services:

-
    -
  • • Rapid MVP Development
  • -
  • • AUI/UX Design
  • -
  • • Full-Stack Application Development
  • -
  • • API integrations
  • -
  • • AI/LLM model integration
  • -
  • • Cloud infrastructure management
  • -
-
- {/* Partner 2 */} - - - Preferred Partner - -
-
- + +
+ + Preferred Partner + +
+
+ +
+
+

Tekiesoft

+

+ Atlanta, Georgia • English +

+
-
-

Tekiesoft

-

Atlanta, Georgia • English

+
+

+ Budget: Starting from + $3,000 +

+

+ Hourly Rate:$100/hr +

+ +

+ Website: + www.tekiesoft.com +

+ +

+ Nexlayer Projects:23 +

+
+
+

+ Key Services: +

+
    +
  • • CI/CD Pipelines for automated deployments
  • +
  • • Cloud Cost Optimization
  • +
  • • Data pipeline architecture
  • +
  • • Custom AI integrations
  • +
  • • Scaling guidance
  • +
  • • Startup-Ready Security
  • +
-
-

Budget: Starting from $3,000

-

Hourly Rate:$100/hr

-

Website:www.tekiesoft.com

-

Nexlayer Projects:23

-
-
-

Key Services:

-
    -
  • • CI/CD Pipelines for automated deployments
  • -
  • • Cloud Cost Optimization
  • -
  • • Data pipeline architecture
  • -
  • • Custom AI integrations
  • -
  • • Scaling guidance
  • -
  • • Startup-Ready Security
  • -
-
- {/* Become a Partner Card */} - -
-
- - - + +
+
+
+ + + +
+
+

+ Become a Partner +

+

+ Join our partner network +

+
-
-

Become a Partner

-

Join our partner network

+
+

+ Benefits: Preferred + partner status +

+

+ Support: Dedicated + partner resources +

+

+ Growth: Access to our + client network +

+

+ Training: Nexlayer + expertise certification +

+
+
+

+ What we're looking for: +

+
    +
  • • Proven development experience
  • +
  • • Strong client communication
  • +
  • • Nexlayer platform expertise
  • +
  • • Portfolio of successful projects
  • +
  • • Commitment to quality delivery
  • +
-
-

Benefits: Preferred partner status

-

Support: Dedicated partner resources

-

Growth: Access to our client network

-

Training: Nexlayer expertise certification

-
-
-

What we're looking for:

-
    -
  • • Proven development experience
  • -
  • • Strong client communication
  • -
  • • Nexlayer platform expertise
  • -
  • • Portfolio of successful projects
  • -
  • • Commitment to quality delivery
  • -
-
- @@ -215,5 +311,5 @@ export default function PartnersPage() {
- ) + ); } diff --git a/default.conf b/default.conf index 0612972..1d59241 100644 --- a/default.conf +++ b/default.conf @@ -38,6 +38,10 @@ server { try_files /agents.html =404; } + location = /partners { + try_files /agents.html =404; + } + location / { try_files $uri $uri/ /index.html; }