From 01a608cc5198323777dbdd75d091bd0cbcdd0218 Mon Sep 17 00:00:00 2001 From: yude Date: Mon, 22 Jan 2024 21:31:51 +0900 Subject: [PATCH] Add pages --- src/App.tsx | 4 +++ src/components/Services.tsx | 69 +++++++++++++++++++++++++++++++++++++ src/components/Spotify.tsx | 10 ++++++ 3 files changed, 83 insertions(+) create mode 100644 src/components/Services.tsx create mode 100644 src/components/Spotify.tsx diff --git a/src/App.tsx b/src/App.tsx index 1aafa39..5bb0035 100644 --- a/src/App.tsx +++ b/src/App.tsx @@ -5,6 +5,8 @@ import Keys from "./components/Keys" import Activities from "./components/Activities" import Footer from "./components/Footer" import Mutuals from "./components/Mutuals" +import Spotify from "./components/Spotify" +import Services from "./components/Services" import { useState, useEffect } from 'react'; @@ -72,6 +74,8 @@ export default function App() { + +
diff --git a/src/components/Services.tsx b/src/components/Services.tsx new file mode 100644 index 0000000..330881b --- /dev/null +++ b/src/components/Services.tsx @@ -0,0 +1,69 @@ +export default function Services() { + return ( + <> +
+

Active services

+
+ +

+ Major public services +

+ +

+ Connectivity +

+ + +
+ + ) + } + \ No newline at end of file diff --git a/src/components/Spotify.tsx b/src/components/Spotify.tsx new file mode 100644 index 0000000..aadfe76 --- /dev/null +++ b/src/components/Spotify.tsx @@ -0,0 +1,10 @@ +export default function Spotify() { + return ( + <> +
+ Spotify Recently Played +
+ + ) + } + \ No newline at end of file