Skip to content

Commit

Permalink
malti: Layout add this apps
Browse files Browse the repository at this point in the history
  • Loading branch information
zobkazi committed Nov 20, 2024
1 parent 323e94a commit ea6fe61
Show file tree
Hide file tree
Showing 29 changed files with 141 additions and 163 deletions.
Binary file added public/android-chrome-192x192.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added public/android-chrome-512x512.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added public/apple-touch-icon.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added public/favicon-16x16.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added public/favicon-32x32.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added public/favicon.ico
Binary file not shown.
1 change: 1 addition & 0 deletions public/site.webmanifest
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
{"name":"","short_name":"","icons":[{"src":"/android-chrome-192x192.png","sizes":"192x192","type":"image/png"},{"src":"/android-chrome-512x512.png","sizes":"512x512","type":"image/png"}],"theme_color":"#ffffff","background_color":"#ffffff","display":"standalone"}
18 changes: 18 additions & 0 deletions src/app/(admin)/auth/layout.tsx
Original file line number Diff line number Diff line change
@@ -0,0 +1,18 @@
import "@/styles/globals.css";

export const metadata = {
title: 'Next.js',
description: 'Generated by Next.js',
}

export default function AuthLayout({
children,
}: {
children: React.ReactNode
}) {
return (
<html lang="en">
<body>{children}</body>
</html>
)
}
9 changes: 9 additions & 0 deletions src/app/(admin)/auth/signup/page.tsx
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
import React from 'react'

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

export default page
18 changes: 18 additions & 0 deletions src/app/(admin)/dashboard/layout.tsx
Original file line number Diff line number Diff line change
@@ -0,0 +1,18 @@
import "@/styles/globals.css";

export const metadata = {
title: 'Next.js',
description: 'Generated by Next.js',
}

export default function DashboardLayout({
children,
}: {
children: React.ReactNode
}) {
return (
<html lang="en">
<body>{children}</body>
</html>
)
}
9 changes: 9 additions & 0 deletions src/app/(home)/about/page.tsx
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
import React from 'react'

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

export default AboutUS
16 changes: 16 additions & 0 deletions src/app/(home)/layout.tsx
Original file line number Diff line number Diff line change
@@ -0,0 +1,16 @@
export const metadata = {
title: 'Next.js',
description: 'Generated by Next.js',
}

export default function RootLayout({
children,
}: {
children: React.ReactNode
}) {
return (
<html lang="en">
<body>{children}</body>
</html>
)
}
9 changes: 9 additions & 0 deletions src/app/(home)/not-found.tsx
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
import React from 'react'

function NotFound() {
return (
<div>NotFound</div>
)
}

export default NotFound
2 changes: 2 additions & 0 deletions src/app/(home)/page.tsx
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
import Home from "@/components/pages/home/Home";
export default Home;
Binary file modified src/app/favicon.ico
Binary file not shown.
27 changes: 0 additions & 27 deletions src/app/globals.css

This file was deleted.

35 changes: 0 additions & 35 deletions src/app/layout.tsx

This file was deleted.

101 changes: 0 additions & 101 deletions src/app/page.tsx

This file was deleted.

File renamed without changes.
File renamed without changes.
Binary file not shown.
Binary file added src/assets/fonts/Li Sirajee Alima ANSI V1.ttf
Binary file not shown.
9 changes: 9 additions & 0 deletions src/components/pages/home/Home.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
Empty file added src/layouts/AuthLayout.tsx
Empty file.
Empty file added src/layouts/DashLayout.tsx
Empty file.
22 changes: 22 additions & 0 deletions src/layouts/HomeLayout.tsx
Original file line number Diff line number Diff line change
@@ -0,0 +1,22 @@
import React from 'react'
import "@/styles/globals.css";
// import TopNavbar from "@/components/pages/Home/TopNavbar";


export default async function HomeLayout({
children,
}: Readonly<{
children: React.ReactNode;
}>) {
return (
<div>

<main className="flex-grow container mx-auto px-4 pt-20">
{children}
</main>

</div>

);
}

25 changes: 25 additions & 0 deletions src/layouts/RootLayout.tsx
Original file line number Diff line number Diff line change
@@ -0,0 +1,25 @@
import type { Metadata } from "next";
import { Inter } from "next/font/google";
import "@/styles/globals.css";

const inter = Inter({ subsets: ["latin"] });

export const metadata: Metadata = {
title: "Welcome to the radiochilmari",
description: "radiochilmari",
icons: { icon: "/public/apple-touch-icon.png" },
};

export default async function RootLayout({
children,
}: Readonly<{
children: React.ReactNode;
}>) {
return (
<html lang="en">
<body className={inter.className}>
{children}
</body>
</html>
);
}
3 changes: 3 additions & 0 deletions src/styles/globals.css
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
@tailwind base;
@tailwind components;
@tailwind utilities;
Empty file added src/types/app.ts
Empty file.

0 comments on commit ea6fe61

Please sign in to comment.