My personal site. theclashfruit.me
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

feat: add page.tsx for all pages

+36
+9
app/(main)/art/page.tsx
··· 1 + export default function Art() { 2 + return ( 3 + <> 4 + <p>Art</p> 5 + 6 + <ul></ul> 7 + </> 8 + ); 9 + }
+9
app/(main)/blog/page.tsx
··· 1 + export default function Blog() { 2 + return ( 3 + <> 4 + <p>Blog</p> 5 + 6 + <ul></ul> 7 + </> 8 + ); 9 + }
+9
app/(main)/photos/page.tsx
··· 1 + export default function Photos() { 2 + return ( 3 + <> 4 + <p>Photos</p> 5 + 6 + <ul></ul> 7 + </> 8 + ); 9 + }
app/(main)/post/[slug]/page.tsx

This is a binary file and will not be displayed.

+9
app/(main)/projects/page.tsx
··· 1 + export default function Projects() { 2 + return ( 3 + <> 4 + <p>Projects</p> 5 + 6 + <ul></ul> 7 + </> 8 + ); 9 + }