Skip to content

Commit

Permalink
linting
Browse files Browse the repository at this point in the history
  • Loading branch information
meleksomai committed Aug 3, 2023
1 parent 2761712 commit edb9e56
Show file tree
Hide file tree
Showing 4 changed files with 9 additions and 4 deletions.
4 changes: 3 additions & 1 deletion apps/somai.me/app/about/section.roles.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,9 @@ export default function RoleSection(props: RoleSectionProps) {
</Heading>
</Heading>
<Text>{role.content}</Text>
<Link suffix={<RxArrowTopRight />} href={role.meta.url}>Learn more</Link>
<Link suffix={<RxArrowTopRight />} href={role.meta.url}>
Learn more
</Link>
</Stack>
))}
</Stack>
Expand Down
4 changes: 2 additions & 2 deletions apps/somai.me/app/layout.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -5,9 +5,9 @@ import React from "react";

import { Box, Stack } from "@thugga/ui";

import { Providers } from "./providers";
import NavBar from "./navbar";
import Footer from "./footer";
import NavBar from "./navbar";
import { Providers } from "./providers";

const inter = Inter({
subsets: ["latin"],
Expand Down
1 change: 1 addition & 0 deletions apps/somai.me/app/not-found.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,7 @@
import { useEffect } from "react";

import { Text, Heading, Stack, Box } from "@thugga/ui";

import Head from "./head";

export default function Error({
Expand Down
4 changes: 3 additions & 1 deletion apps/somai.me/app/paper/[slug]/page.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,9 @@ export default function PaperPage({ params }: { params: { slug: string } }) {
>
Read original article
</Link>
<Text color="slate11" variant="large">{publication.meta.excerpt}</Text>
<Text color="slate11" variant="large">
{publication.meta.excerpt}
</Text>
<Stack>{rendered}</Stack>
</Stack>
);
Expand Down

0 comments on commit edb9e56

Please sign in to comment.