-
Notifications
You must be signed in to change notification settings - Fork 2
/
config.ts
52 lines (46 loc) · 1.77 KB
/
config.ts
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
/// Core Website config
export const companyConfig = {
////// Base config used mainly for layout (@/components/navbar/Navbar-1.tsx and @/components/footer/Footer-1.tsx)
company: {
name: "AnotherWrapper",
theme: "anotherwrapper",
homeUrl: "https://apps.anotherwrapper.com",
appUrl: "/",
description: "Build your AI startup in hours using our demo apps!",
logo: "/logo.png",
navbarLinks: [
{ label: "Home", href: "https://anotherwrapper.com" },
{ label: "Other apps", href: "https://apps.anotherwrapper.com" },
{ label: "Blog", href: "/blog" },
],
},
////// UI config
navbarLanding: {
bgColor: "base-100",
textColor: "base-content",
buttonColor: "primary",
},
footerLanding: {
bgColor: "base-200",
textColor: "base-content",
},
};
/// Core Website config
export const companyName = "Holding Company Name";
export const defaultTitle =
"Build your AI startup in hours using our customizable demo apps";
export const defaultDescription =
"Use one of our 8 customizable AI demo apps to build your AI SaaS quickly. A Next.js starter kit with AI integrations, Supabase, payments, emails & more! ";
export const defaultKeywords =
"openai, gpt-3, llama, replicate, groq, mixtral, ai app, boilerplate, api endpoint, next.js, react, starter kit, boilerplate, ai, artificial intelligence, node.js, express, stripe";
export const defaultOgImage = "/og.png";
export const favicon = "/favicon.ico";
// LEGAL STUFF
export const privacyPolicyUrl = "https://anotherwrapper.com/privacy";
export const tosUrl = "https://anotherwrapper.com/terms";
// Auth
export const authImage = "/hero.webp";
// Inside routing
export const homePage = "/home";
export const redirectTo =
"https://apps.anotherwrapper.com/auth/confirm?next=/home";