feat(app): implement library feature

This commit is contained in:
ItzCrazyKns 2024-06-29 11:09:51 +05:30
parent 61044715e9
commit c51ec8ff0f
No known key found for this signature in database
GPG key ID: 8162927C7CCE3065
8 changed files with 234 additions and 21 deletions

12
ui/app/library/layout.tsx Normal file
View file

@ -0,0 +1,12 @@
import { Metadata } from 'next';
import React from 'react';
export const metadata: Metadata = {
title: 'Library - Perplexica',
};
const Layout = ({ children }: { children: React.ReactNode }) => {
return <div>{children}</div>;
};
export default Layout;