Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
File renamed without changes.
3 changes: 2 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -400,7 +400,8 @@ git reset --soft HEAD~1
- **GitHub Discussions**: Ask questions about contributing
- **Issues**: Report bugs or request features
- **Discord/Slack**: Real-time chat with the community
- **Documentation**: Check our [Contributing Guide](./docs/dev/contributing.md)
- **Developer Documentation**: Check our [Developer Documentation](/docs/dev/README.md)
- **Github Actions Workflow Documentation**: Check our [Github Actions Workflow Documentation](/.github/actions.md)

Remember: **Everyone was a beginner once!** The codac community is here to help you learn and grow as a developer.

Expand Down
132 changes: 0 additions & 132 deletions app/(admin)/page.tsx

This file was deleted.

11 changes: 5 additions & 6 deletions app/(admin)/layout.tsx → app/(dashboard)/layout.tsx
Original file line number Diff line number Diff line change
@@ -1,10 +1,10 @@
import { SidebarProvider } from '@/components/ui/sidebar'
import { SidebarProvider, SidebarInset } from '@/components/ui/sidebar'
import '@/app/globals.css'

import { AppSidebar } from '@/components/app-sidebar'
import Header from '@/components/header'

const title = 'Admin Page'
const title = 'Dashboard'
const description = ''

export const metadata = {
Expand All @@ -15,17 +15,16 @@ export const metadata = {
title,
description,
},
metadataBase: new URL('https://nextjs-postgres-auth.vercel.app'),
}

export default function AdminLayout({ children }: { children: React.ReactNode }) {
export default function DashboardLayout({ children }: { children: React.ReactNode }) {
return (
<SidebarProvider>
<AppSidebar />
<main className="w-full">
<SidebarInset>
<Header />
{children}
</main>
</SidebarInset>
</SidebarProvider>
)
}
Loading
Loading