Skip to content

Commit

Permalink
implement initial file and folder structure
Browse files Browse the repository at this point in the history
  • Loading branch information
adrianhajdin committed Apr 26, 2024
1 parent d326536 commit bf4c051
Show file tree
Hide file tree
Showing 59 changed files with 1,731 additions and 288 deletions.
11 changes: 11 additions & 0 deletions app/(auth)/layout.tsx
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
export default function RootLayout({
children,
}: Readonly<{
children: React.ReactNode;
}>) {
return (
<main>
{children}
</main>
);
}
9 changes: 9 additions & 0 deletions app/(auth)/sign-in/page.tsx
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
import React from 'react'

const SignIn = () => {
return (
<div>SignIn</div>
)
}

export default SignIn
9 changes: 9 additions & 0 deletions app/(auth)/sign-up/page.tsx
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
import React from 'react'

const SignUp = () => {
return (
<div>SignUp</div>
)
}

export default SignUp
12 changes: 12 additions & 0 deletions app/(root)/layout.tsx
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
export default function RootLayout({
children,
}: Readonly<{
children: React.ReactNode;
}>) {
return (
<main>
SIDEBAR
{children}
</main>
);
}
9 changes: 9 additions & 0 deletions app/(root)/page.tsx
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
import React from 'react'

const Home = () => {
return (
<div>Home</div>
)
}

export default Home
Binary file removed app/favicon.ico
Binary file not shown.
Loading

0 comments on commit bf4c051

Please sign in to comment.