Skip to content

eemax/lkkb

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

31 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Lindqvist Konsult — lkkb.se

Consulting website for Lindqvist Konsult. Built with Astro and Tailwind CSS.

Prerequisites

  • Node.js >= 22.12.0
  • pnpm (install with npm install -g pnpm)

Getting started

# Install dependencies
pnpm install

# Start dev server (http://localhost:4321)
pnpm dev

# Production build (outputs to dist/)
pnpm build

# Preview production build locally
pnpm preview

Project structure

src/
├── components/
│   ├── ServiceCard.astro
│   ├── Header.astro
│   └── Footer.astro
├── data/
│   └── services.ts       # Consulting service entries
├── layouts/
│   └── Base.astro        # HTML shell, SEO meta
├── pages/
│   ├── index.astro       # Homepage (hero, about, services)
│   └── cv.astro          # CV / resume page
└── styles/
    └── global.css        # Tailwind + CSS variables + typography

Adding services

Edit src/data/services.ts:

export const services: Service[] = [
  {
    name: "Service Name",
    tagline: "Short tagline.",
    description: "What it does.",
    features: ["Feature one", "Feature two"],
    tags: ["plm", "ai"],
  },
];

Stack

Layer Tool Notes
Framework Astro 6.x Static site generation
Styling Tailwind CSS 4.x Utility-first
Linting/Formatting Biome pnpm biome check .

Linting

# Check for issues
pnpm biome check .

# Auto-fix
pnpm biome check --write .

About

No description, website, or topics provided.

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

 
 
 

Contributors