-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtry.txt
More file actions
82 lines (58 loc) · 2.37 KB
/
try.txt
File metadata and controls
82 lines (58 loc) · 2.37 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
--> V1
/ screenshot view use diffrent lib - Done
/ prisma to drizzle - Done
/ make changes in sidebar and searchbar work -Done
/ loading - Done [almost]
/ chat ui manage - Done
/ compatible with phones - [later]
/ input box manage - Done [try 21st dev input box]
/ improve prompt
--> get dashboard to main page / from /dashboard - [Done]
--> manage spaces ui and sidebar width - Done
--> make sure all functionalities work fine
--> Landing page
--> login with google and github
--> project save functionality and custom save projects page
--> Spaces are being saved and updated successfully - Done
--> show only saved spaces in project save button and save the project in those spaces and by default save the projects in ALl if no space is being selected - DONE
////////////////////////////////
--> when click on spaces show the projects saved in spaces [ Main work ] [ Done ]
--> Spaces UI Better - inside space popover UI better [set all loading states and refresh button in popover]
--> when scrape preview fails show bad status instead of bad log in console log
--> Tab for spaces, show spaces when click on spaces manage Spaces
--> Logout and Login Page re design
--> Fonts
--> Always highlight All Button in save spaces checkbox
--> Add Loading Animation in both spaces section and checkbox spaces loading section
//
// // import { useRouter } from "next/navigation";
// import React, { ReactNode } from "react";
// import { SidebarLeft } from "@/components/sidebar-left";
// import { SidebarRight } from "@/components/sidebar-right";
// import { SidebarProvider } from "@/components/ui/sidebar";
// import { DataProvider } from "@/provider/spaceContext";
// import { auth } from "../(auth)/auth";
// type LayoutProps = {
// children: ReactNode;
// };
// const Layout = async ({ children }: {children: React.ReactNode}) => {
// // const router = useRouter();
// let session = await auth()
// if(!session){
// // Router.push("/home");
// }
// return (
// <SidebarProvider>
// <main className='flex gap-2 w-screen'>
// <DataProvider>
// <SidebarLeft user={session?.user} />
// <div className='w-full'>
// {children}
// </div>
// <SidebarRight user={session?.user} />
// </DataProvider>
// </main>
// </SidebarProvider>
// );
// };
// export default Layout;