Compare commits
No commits in common. "7c0fdd142ff061d5171606482dc72a2c383bf900" and "67b915d722bbe07cc11bd46249ff06df022c0a00" have entirely different histories.
7c0fdd142f
...
67b915d722
2 changed files with 3 additions and 2 deletions
|
@ -28,7 +28,7 @@ export function PostSegment(props: { post: Post }): JSXElement {
|
||||||
return (
|
return (
|
||||||
<div class="card compact w-full flex-grow border-b-2 border-b-base-300 bg-base-200 text-base-content transition-all hover:bg-base-300">
|
<div class="card compact w-full flex-grow border-b-2 border-b-base-300 bg-base-200 text-base-content transition-all hover:bg-base-300">
|
||||||
<div class="card-body">
|
<div class="card-body">
|
||||||
<p class="break-words text-base-content md:px-6 md:pt-2">{props.post?.content}</p>
|
<p class="break-words text-base-content">{props.post?.content}</p>
|
||||||
<div class="card-actions justify-end">
|
<div class="card-actions justify-end">
|
||||||
<button
|
<button
|
||||||
onClick={(): void => nav("/post/" + props.post?.id)}
|
onClick={(): void => nav("/post/" + props.post?.id)}
|
||||||
|
|
|
@ -46,7 +46,8 @@ export function Footer(): JSXElement {
|
||||||
</nav>
|
</nav>
|
||||||
<aside>
|
<aside>
|
||||||
<p>
|
<p>
|
||||||
<b>{new Date().getFullYear()} ❄️ FrostByte</b>
|
Copyright © {new Date().getFullYear()} - All right reserved by Swarm
|
||||||
|
Industries Ltd
|
||||||
</p>
|
</p>
|
||||||
</aside>
|
</aside>
|
||||||
</footer>
|
</footer>
|
||||||
|
|
Loading…
Add table
Reference in a new issue