13 lines
425 B
TypeScript
13 lines
425 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" },
|
|
org: {
|
|
logo: "/og.png",
|
|
sameAs: ["https://www.linkedin.com/company/van-hunen-it"],
|
|
},
|
|
} as const;
|