Initial commit
This commit is contained in:
73
frontend/config/site.ts
Normal file
73
frontend/config/site.ts
Normal file
@@ -0,0 +1,73 @@
|
||||
export type SiteConfig = typeof siteConfig;
|
||||
|
||||
export const siteConfig = {
|
||||
name: "Open Source Test Case Management Tool",
|
||||
description: "Integrate and manage all your software testing.",
|
||||
navItems: [
|
||||
{
|
||||
label: "Home",
|
||||
href: "/",
|
||||
},
|
||||
{
|
||||
label: "Projects",
|
||||
href: "/projects",
|
||||
},
|
||||
// {
|
||||
// label: "Docs",
|
||||
// href: "/docs",
|
||||
// },
|
||||
// {
|
||||
// label: "Pricing",
|
||||
// href: "/pricing",
|
||||
// },
|
||||
// {
|
||||
// label: "Blog",
|
||||
// href: "/blog",
|
||||
// },
|
||||
{
|
||||
label: "About",
|
||||
href: "/about",
|
||||
}
|
||||
],
|
||||
navMenuItems: [
|
||||
{
|
||||
label: "Profile",
|
||||
href: "/profile",
|
||||
},
|
||||
{
|
||||
label: "Dashboard",
|
||||
href: "/dashboard",
|
||||
},
|
||||
{
|
||||
label: "Projects",
|
||||
href: "/projects",
|
||||
},
|
||||
{
|
||||
label: "Team",
|
||||
href: "/team",
|
||||
},
|
||||
{
|
||||
label: "Calendar",
|
||||
href: "/calendar",
|
||||
},
|
||||
{
|
||||
label: "Settings",
|
||||
href: "/settings",
|
||||
},
|
||||
{
|
||||
label: "Help & Feedback",
|
||||
href: "/help-feedback",
|
||||
},
|
||||
{
|
||||
label: "Logout",
|
||||
href: "/logout",
|
||||
},
|
||||
],
|
||||
links: {
|
||||
github: "https://github.com/kimatata/TestCaseManager",
|
||||
// twitter: "https://twitter.com/getnextui",
|
||||
// docs: "https://nextui.org",
|
||||
// discord: "https://discord.gg/9b6yyZKmH4",
|
||||
// sponsor: "https://patreon.com/jrgarciadev",
|
||||
},
|
||||
};
|
||||
Reference in New Issue
Block a user