From 47be8b066527c9508d809534593c999597f84352 Mon Sep 17 00:00:00 2001 From: Triston Date: Thu, 4 Apr 2024 23:25:04 -0500 Subject: [PATCH] (feat): rewrite ui layout, keeping old code as backup --- src/App.tsx | 60 +++++++++++++++++++++++++++++++++++++++++++++-------- 1 file changed, 51 insertions(+), 9 deletions(-) diff --git a/src/App.tsx b/src/App.tsx index 4dc46f3..fdcc505 100644 --- a/src/App.tsx +++ b/src/App.tsx @@ -1,9 +1,6 @@ -import { Route, Router, useEffect } from "kaioken" -import Main from "./pages/Main" +import { useEffect } from "kaioken" import { useStorage } from "./hooks/storageStores" import { useStationsStore } from "./hooks/stationStores" -import Add from "./pages/Add" -import Player from "./pages/Player" export function App() { const { getStationsFile } = useStorage() @@ -16,11 +13,56 @@ export function App() { }, []) return ( - - - - - +
+
+
+ +
+
+

Music

+
    +
  • + + + + + + + + + + Radio +
  • +
+
+
+ +
+
+ + + {/* Right Section __________*/} +
+
+
+

Music Player

+
+
+
+

Popular

+
+
+
+
+

Local Radio

+
+
+

Recommended For You

+
+
+
+
+
) }