0xBootleggers / bufficorn

Bufficorn Ventures Custom DAO App
https://bufficorn.vercel.app
MIT License
0 stars 1 forks source link

Replace Home Page and Remove Test Form #6

Closed earth2travis closed 1 year ago

earth2travis commented 1 year ago

Replace home page with DAO view and remove FormTest

earth2travis commented 1 year ago

In Routes.tsx

Removed

<Route path={`${routePath}/formtest`} element={<FormTest />} />
earth2travis commented 1 year ago

Changed:

<Route index element={<Home />} />

to:

<Route index element={<Dao />} />
earth2travis commented 1 year ago

Removed:

<Route path={`${routePath}/dao`} element={<Dao />} />

and deleted Home.tsx

earth2travis commented 1 year ago

Deleted

{ label: "DAO Overview", href: `${routePath}/dao` },

in LayoutContainer.tsx

earth2travis commented 1 year ago

Done