9 lines
327 B
TypeScript
9 lines
327 B
TypeScript
// lib/site.ts
|
|
export const site = {
|
|
name: "Van Hunen IT",
|
|
url: process.env.SITE_URL ?? "https://vanhunen.it",
|
|
description:
|
|
"Inbox-ready email, Cloudflare edge security, and website care for small businesses—clear scope, flat pricing, and proof of outcomes.",
|
|
contact: { email: "hello@vanhunen.it" },
|
|
} as const;
|