diff --git a/app/(home-pages)/tag/TagHeader.tsx b/app/(home-pages)/tag/TagHeader.tsx deleted file mode 100644 index ae82f1e2..00000000 --- a/app/(home-pages)/tag/TagHeader.tsx +++ /dev/null @@ -1,9 +0,0 @@ -"use client"; - -export const TagHeader = () => { - return ( -
-

Tag Name Here

-
- ); -}; diff --git a/app/(home-pages)/tag/[tag]/page.tsx b/app/(home-pages)/tag/[tag]/page.tsx index 53f10da4..a7ecd215 100644 --- a/app/(home-pages)/tag/[tag]/page.tsx +++ b/app/(home-pages)/tag/[tag]/page.tsx @@ -52,8 +52,8 @@ const TagContent = (props: { const TagHeader = (props: { tag: string; postCount: number }) => { return ( -
-
+
+

{props.tag}

diff --git a/app/(home-pages)/tag/page.tsx b/app/(home-pages)/tag/page.tsx deleted file mode 100644 index 8a7561c0..00000000 --- a/app/(home-pages)/tag/page.tsx +++ /dev/null @@ -1,60 +0,0 @@ -import { DashboardLayout } from "components/PageLayouts/DashboardLayout"; -import { TagHeader } from "./TagHeader"; -import { Tag } from "components/Tags"; -import { Separator } from "components/Layout"; - -export default async function TagPage(props: {}) { - return ( - , - }, - }} - /> - ); -} - -const TagContent = () => { - return ( -
-
- - -
-
- - - - - - - - -
-
- ); -}; -const DummyPost = () => { - return ( -
- ); -}; - -const RelatedTags = () => { - return ( -
-
Related
- - - - -
- ); -}; diff --git a/app/lish/[did]/[publication]/[rkey]/Interactions/Interactions.tsx b/app/lish/[did]/[publication]/[rkey]/Interactions/Interactions.tsx index d78c8170..f0eeb41a 100644 --- a/app/lish/[did]/[publication]/[rkey]/Interactions/Interactions.tsx +++ b/app/lish/[did]/[publication]/[rkey]/Interactions/Interactions.tsx @@ -19,8 +19,6 @@ import { useIdentityData } from "components/IdentityProvider"; import { ManageSubscription, SubscribeWithBluesky } from "app/lish/Subscribe"; import { EditTiny } from "components/Icons/EditTiny"; import { getPublicationURL } from "app/lish/createPub/getPublicationURL"; -import { PubListing } from "app/(home-pages)/discover/PubListing"; -import { PubIcon } from "components/ActionBar/Publications"; export type InteractionState = { drawerOpen: undefined | boolean; diff --git a/components/InteractionsPreview.tsx b/components/InteractionsPreview.tsx index 60d5b266..ea9ddf6e 100644 --- a/components/InteractionsPreview.tsx +++ b/components/InteractionsPreview.tsx @@ -31,7 +31,7 @@ export const InteractionPreview = (props: { <> {interactionsAvailable || props.share ? ( - + ) : null} )} @@ -55,7 +55,7 @@ export const InteractionPreview = (props: { )} {interactionsAvailable && props.share ? ( - + ) : null} {props.share && ( <> diff --git a/components/PostListing.tsx b/components/PostListing.tsx index 897cc82d..9a1f0d6b 100644 --- a/components/PostListing.tsx +++ b/components/PostListing.tsx @@ -69,20 +69,15 @@ export const PostListing = (props: Post) => { >

{postRecord.title}

-

{postRecord.description}

-
+

{postRecord.description}

+
-
- + { return ( -
+
+
{props.pubRecord.name} - -
{props.author}
); }; -const PostInfo = (props: { - author: string; - publishedAt: string | undefined; -}) => { +const PostInfo = (props: { publishedAt: string | undefined }) => { return (
{props.publishedAt && (