mirror of
https://github.com/ragestudio/comty.git
synced 2025-06-09 10:34:17 +00:00
105 lines
2.0 KiB
JavaScript
Executable File
105 lines
2.0 KiB
JavaScript
Executable File
export default [
|
|
{
|
|
path: "/auth",
|
|
useLayout: "minimal",
|
|
public: true
|
|
},
|
|
{
|
|
path: "/home/*",
|
|
useLayout: "default",
|
|
useTitle: "Home",
|
|
},
|
|
{
|
|
path: "/posts/*",
|
|
useLayout: "default",
|
|
useTitle: "Posts",
|
|
},
|
|
{
|
|
path: "/play/*",
|
|
public: true,
|
|
centeredContent: {
|
|
mobile: true,
|
|
desktop: true,
|
|
},
|
|
mobileTopBarSpacer: true,
|
|
},
|
|
{
|
|
path: "/post/*",
|
|
useLayout: "default",
|
|
public: true
|
|
},
|
|
{
|
|
path: "/live/*",
|
|
useLayout: "default",
|
|
public: true
|
|
},
|
|
{
|
|
path: "/featured-event/*",
|
|
useLayout: "default",
|
|
public: true
|
|
},
|
|
{
|
|
path: "/settings",
|
|
useLayout: "default",
|
|
centeredContent: {
|
|
mobile: true,
|
|
desktop: false,
|
|
},
|
|
mobileTopBarSpacer: true,
|
|
},
|
|
{
|
|
path: "/security/*",
|
|
useLayout: "default",
|
|
centeredContent: true,
|
|
},
|
|
{
|
|
path: "/music/*",
|
|
useLayout: "default",
|
|
centeredContent: true,
|
|
},
|
|
{
|
|
path: "/landing/*",
|
|
useLayout: "minimal",
|
|
public: true,
|
|
},
|
|
{
|
|
path: "/nfc/*",
|
|
useLayout: "minimal",
|
|
public: true,
|
|
},
|
|
{
|
|
path: "/privacy/*",
|
|
useLayout: "default",
|
|
public: true
|
|
},
|
|
{
|
|
path: "/terms/*",
|
|
useLayout: "default",
|
|
public: true
|
|
},
|
|
{
|
|
path: "/apr/*",
|
|
useLayout: "minimal",
|
|
public: true
|
|
},
|
|
{
|
|
path: "/marketplace/*",
|
|
useLayout: "default",
|
|
centeredContent: true,
|
|
extendedContent: true,
|
|
},
|
|
{
|
|
path: "/violation",
|
|
useLayout: "minimal",
|
|
public: true,
|
|
},
|
|
// THIS MUST BE THE LAST ROUTE
|
|
{
|
|
path: "/",
|
|
useLayout: "default",
|
|
centeredContent: {
|
|
mobile: false,
|
|
desktop: true,
|
|
},
|
|
},
|
|
] |