diff --git a/app/reading/page.tsx b/app/reading/page.tsx
new file mode 100644
index 0000000..8a9045c
--- /dev/null
+++ b/app/reading/page.tsx
@@ -0,0 +1,19 @@
+import Reading from "@/components/Reading";
+import Heading from "@/components/ui/Heading";
+import Summary from "@/components/Summary";
+
+const ReadingPage = async () => {
+ return (
+ <>
+
+
+ A running list of books I’ve read or am currently reading. Most connect
+ back to software in some way, whether through code, systems, teams,
+ decision-making, or shaping ideas into useful things.
+
+
+ >
+ );
+};
+
+export default ReadingPage;
diff --git a/components/Header.tsx b/components/Header.tsx
index 4164e35..781dc0f 100644
--- a/components/Header.tsx
+++ b/components/Header.tsx
@@ -10,7 +10,7 @@ const Header = () => {
<>