Skip to content

Vallit-Network/Vallit

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

488 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Vallit Marketing Website

Premium marketing site for Vallit built with Next.js 14, TypeScript, and Tailwind CSS.

Getting Started

# Install dependencies
npm install

# Run development server
npm run dev

# Build for production
npm run build

# Start production server
npm start

Visit http://localhost:3000 to view the site.


Configuration Guide

Changing Pricing

Edit the plans array in src/app/pricing/page.tsx:

const plans = [
  {
    name: "Starter",
    price: "€149",        // Change price here
    period: "/mo",
    description: "...",
    features: [...],      // Update feature list
    popular: false,       // Set true for highlighted plan
  },
  // ... more plans
];

Changing Accent Color

Edit CSS variables in src/app/globals.css:

:root {
  /* Current: Muted Teal */
  --accent: #00D4AA;
  --accent-dim: rgba(0, 212, 170, 0.15);
  --accent-glow: rgba(0, 212, 170, 0.4);
  --accent-muted: rgba(0, 212, 170, 0.6);
  
  /* Alternative: Muted Electric Blue */
  /* --accent: #3B82F6;
     --accent-dim: rgba(59, 130, 246, 0.15);
     --accent-glow: rgba(59, 130, 246, 0.4);
     --accent-muted: rgba(59, 130, 246, 0.6); */
  
  /* Alternative: Muted Violet */
  /* --accent: #8B5CF6;
     --accent-dim: rgba(139, 92, 246, 0.15);
     --accent-glow: rgba(139, 92, 246, 0.4);
     --accent-muted: rgba(139, 92, 246, 0.6); */
}

Updating Contact Form Email Target

The contact form in src/components/pricing/contact-form.tsx currently logs submissions to console. To send emails:

  1. Create an API route at src/app/api/contact/route.ts
  2. Integrate with your email service (Resend, SendGrid, etc.)
  3. Update the form's handleSubmit to POST to /api/contact

Example API route:

// src/app/api/contact/route.ts
import { NextResponse } from 'next/server';

export async function POST(request: Request) {
  const data = await request.json();
  
  // Send email via your service
  // await resend.emails.send({ ... });
  
  return NextResponse.json({ success: true });
}

Updating Copy

Key content locations:

Content File
Hero text src/components/home/hero.tsx
Benefits src/components/home/benefits.tsx
Features src/app/features/page.tsx
Solutions src/app/solutions/page.tsx
Pricing src/app/pricing/page.tsx
About src/app/about/page.tsx
Legal src/app/impressum/page.tsx, src/app/datenschutz/page.tsx
Footer src/components/layout/footer.tsx
Chatbot responses src/components/kian-widget/kian-widget.tsx

Adding Social Proof Logos

Replace the placeholder logos in src/app/page.tsx:

const logos = [
  { name: "Company A", src: "/images/logos/company-a.svg" },
  // ... add real logos
];

Then update the JSX to use <Image> components.


Project Structure

src/
├── app/                    # Pages (App Router)
│   ├── page.tsx           # Home
│   ├── features/          # Features page
│   ├── solutions/         # Solutions page
│   ├── pricing/           # Pricing page
│   ├── about/             # About page
│   ├── impressum/         # Legal: Impressum
│   ├── datenschutz/       # Legal: Privacy
│   ├── layout.tsx         # Root layout
│   └── globals.css        # Global styles
├── components/
│   ├── ui/                # Reusable UI components
│   │   ├── button.tsx
│   │   ├── badge.tsx
│   │   ├── glow-card.tsx  # Mouse-tracking glow cards
│   │   └── section.tsx    # Scroll-reveal sections
│   ├── layout/
│   │   ├── navbar.tsx
│   │   └── footer.tsx
│   ├── home/              # Home-specific components
│   │   ├── hero.tsx
│   │   ├── benefits.tsx
│   │   ├── sticky-stepper.tsx
│   │   └── use-cases.tsx
│   ├── pricing/
│   │   └── contact-form.tsx
│   └── kian-widget/       # Chatbot widget
│       └── kian-widget.tsx
└── lib/                   # Utilities (if needed)

Deployable Next apps

App Folder Vercel Root Directory
Marketing (vallit.net) apps/marketing apps/marketing
App + dashboard workspace (app.vallit.net) apps/app apps/app
Status (status.vallit.net) apps/status apps/status

See apps/README.md and docs/DEPLOY_SUBDOMAINS.md. Repo root also has Python api/ and shared assets.

Vallit Infrastructure Additions

This repository now includes a dedicated Linear OAuth backend integration for Syntra.

Ownership / attribution:

  • Company / infrastructure owner: Vallit
  • AI systems architecture + implementation: Kian AI

Integration documentation:

Primary backend routes:

  • apps/app/src/app/api/integrations/linear/connect/route.ts
  • apps/app/src/app/api/integrations/linear/callback/route.ts

Design System

Colors

  • Background: #050505 (near-black)
  • Text Primary: #ffffff
  • Text Secondary: #a1a1a1
  • Accent: #00D4AA (muted teal)

Typography

  • Font: Inter (Google Fonts)
  • Headings: 600-700 weight, tight tracking

Components

  • GlowCard: Cards with mouse-tracking glow effect
  • Button: Primary (white), Secondary (border), Ghost (text-only)
  • Section: Container with scroll-reveal animation

Deployment

Vercel (Recommended)

# Install Vercel CLI
npm i -g vercel

# Deploy
vercel

Static Export

# Add to next.config.ts:
# output: 'export',

npm run build
# Output in /out folder

Legal Pages

The Impressum and Privacy Policy pages contain placeholder content. Replace with your actual legal information before going live.


License

Proprietary - Vallit

About

Automation. Just valid.

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

 
 
 

Contributors