Skip to content

Commit 52fb251

Browse files
Updated
1 parent c281175 commit 52fb251

File tree

4 files changed

+1272
-793
lines changed

4 files changed

+1272
-793
lines changed

public/images/og.png

288 KB
Loading

src/app/layout.tsx

+20
Original file line numberDiff line numberDiff line change
@@ -30,6 +30,26 @@ export default function RootLayout({
3030
}) {
3131
return (
3232
<html lang='en' className={clsx(fontSans.variable)}>
33+
34+
<meta name="description" content="Explore transactions, blocks, account for the Libre Blockchain." />
35+
36+
37+
<meta property="og:url" content="https://libreblocks.io/" />
38+
<meta property="og:type" content="website" />
39+
<meta property="og:title" content="Libre Blockchain Explorer" />
40+
<meta property="og:description" content="Explore transactions, blocks, account for the Libre Blockchain." />
41+
<meta property="og:image" content="/images/og.png" />
42+
43+
44+
<meta name="twitter:card" content="summary_large_image" />
45+
<meta property="twitter:domain" content="libreblocks.io" />
46+
<meta property="twitter:url" content="https://libreblocks.io/" />
47+
<meta name="twitter:title" content="Libre Blockchain Explorer" />
48+
<meta name="twitter:description" content="Explore transactions, blocks, account for the Libre Blockchain." />
49+
<meta name="twitter:image" content="" />
50+
51+
52+
3353
<body className='min-h-screen text-shade-900 antialiased'>
3454
<GlobalComponents />
3555
<Announcement />

tsconfig.json

+46-26
Original file line numberDiff line numberDiff line change
@@ -1,26 +1,46 @@
1-
{
2-
"compilerOptions": {
3-
"target": "es5",
4-
"lib": ["dom", "dom.iterable", "esnext"],
5-
"allowJs": true,
6-
"skipLibCheck": true,
7-
"strict": true,
8-
"forceConsistentCasingInFileNames": true,
9-
"noEmit": true,
10-
"allowSyntheticDefaultImports": true,
11-
"esModuleInterop": true,
12-
"module": "esnext",
13-
"moduleResolution": "node",
14-
"resolveJsonModule": true,
15-
"isolatedModules": true,
16-
"jsx": "preserve",
17-
"incremental": true,
18-
"baseUrl": ".",
19-
"paths": {
20-
"@/*": ["./src/*"],
21-
"~/*": ["./public/*"]
22-
}
23-
},
24-
"include": ["next-env.d.ts", "**/*.ts", "**/*.tsx"],
25-
"exclude": ["node_modules"]
26-
}
1+
{
2+
"compilerOptions": {
3+
"target": "es5",
4+
"lib": [
5+
"dom",
6+
"dom.iterable",
7+
"esnext"
8+
],
9+
"allowJs": true,
10+
"skipLibCheck": true,
11+
"strict": true,
12+
"forceConsistentCasingInFileNames": true,
13+
"noEmit": true,
14+
"allowSyntheticDefaultImports": true,
15+
"esModuleInterop": true,
16+
"module": "esnext",
17+
"moduleResolution": "node",
18+
"resolveJsonModule": true,
19+
"isolatedModules": true,
20+
"jsx": "preserve",
21+
"incremental": true,
22+
"baseUrl": ".",
23+
"paths": {
24+
"@/*": [
25+
"./src/*"
26+
],
27+
"~/*": [
28+
"./public/*"
29+
]
30+
},
31+
"plugins": [
32+
{
33+
"name": "next"
34+
}
35+
]
36+
},
37+
"include": [
38+
"next-env.d.ts",
39+
"**/*.ts",
40+
"**/*.tsx",
41+
".next/types/**/*.ts"
42+
],
43+
"exclude": [
44+
"node_modules"
45+
]
46+
}

0 commit comments

Comments
 (0)