-
Notifications
You must be signed in to change notification settings - Fork 87
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Co-authored-by: Luiz Estácio <[email protected]>
- Loading branch information
1 parent
3e7cc69
commit aa9a94c
Showing
65 changed files
with
2,510 additions
and
3,466 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -42,6 +42,7 @@ jobs: | |
|
||
- name: Run lint & ts:check | ||
run: | | ||
pnpm build | ||
pnpm lint:check | ||
pnpm ts:check | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,2 @@ | ||
GRAPHQL_API=http://beta-4.fuel.network/graphql | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,8 @@ | ||
module.exports = { | ||
plugins: { | ||
'postcss-import': {}, | ||
'tailwindcss/nesting': {}, | ||
tailwindcss: {}, | ||
autoprefixer: {}, | ||
}, | ||
}; |
Binary file not shown.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,27 +1,22 @@ | ||
:root { | ||
--font-sans: var(--font-inter); | ||
} | ||
|
||
* { | ||
padding: 0; | ||
margin: 0; | ||
box-sizing: border-box; | ||
} | ||
@tailwind base; | ||
@tailwind components; | ||
@tailwind utilities; | ||
|
||
html, | ||
body { | ||
max-width: 100vw; | ||
overflow-x: hidden; | ||
} | ||
|
||
body { | ||
background: var(--colors-bodyBg); | ||
font-family: var(--font-inter); | ||
color: var(--colors-textColor); | ||
font-size: 16px; | ||
:root { | ||
--hero-bg: #000; | ||
} | ||
|
||
a { | ||
color: inherit; | ||
text-decoration: none; | ||
@layer base { | ||
h1, | ||
h2, | ||
h3, | ||
h4, | ||
h5, | ||
h6 { | ||
font-weight: 600; | ||
} | ||
kbd { | ||
font-size: 0.875rem; | ||
font-family: var(--default-font-family); | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,19 @@ | ||
import { HomePage } from '~/systems/Home/pages/HomePage'; | ||
import { Heading } from '@fuels/ui'; | ||
import { Layout } from '~/systems/Core/components/Layout/Layout'; | ||
import { getLastTxs } from '~/systems/Transaction/actions/get-last-txs'; | ||
import { TxList } from '~/systems/Transaction/component/TxList/TxList'; | ||
|
||
export default function Home() { | ||
return <HomePage />; | ||
export default async function Home() { | ||
const transactions = await getLastTxs({}); | ||
return ( | ||
<Layout hero> | ||
<Heading as="h2" size="2" className="mb-10"> | ||
Recent Transactions | ||
</Heading> | ||
<TxList transactions={transactions} /> | ||
</Layout> | ||
); | ||
} | ||
|
||
// Revalidate cache every 10 seconds | ||
export const revalidate = 10; |
59 changes: 0 additions & 59 deletions
59
packages/app/src/systems/Core/components/EntityItem/EntityItem.stories.tsx
This file was deleted.
Oops, something went wrong.
34 changes: 0 additions & 34 deletions
34
packages/app/src/systems/Core/components/EntityItem/EntityItem.test.tsx
This file was deleted.
Oops, something went wrong.
Oops, something went wrong.