mirror of
https://github.com/LaconicNetwork/laconic.com.git
synced 2026-02-28 13:44:09 +00:00
rm token, watcher, prepare for copy
This commit is contained in:
parent
f6a53d7932
commit
1fb931c29d
@ -24,11 +24,11 @@
|
||||
"benefitsS02Item03": "Optimal control of privacy levels",
|
||||
"benefitsS02Item04": "Self-verify data accuracy",
|
||||
"benefitsS02Item05": "Higher quality of service and uptime",
|
||||
"benefitsS02Item06": "LNT rewards for network participation",
|
||||
"benefitsS02Item06": "TODO: improve copy of all of the above",
|
||||
"benefitsButton": "Join Us",
|
||||
"benefitsButtonLink": "https://discord.com/invite/ukhbBemyxY",
|
||||
"othersHeading": "What Others Say",
|
||||
"latestHeading": "Latest News"
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
@ -21,8 +21,7 @@ export const ProductsLinks = [
|
||||
{ href: '/products/#laconicwatchers', title: 'Watchers (SDK)' },
|
||||
{ href: '/products/#laconicstack', title: 'Laconic Stack' },
|
||||
{ href: '/products/#laconicnetwork', title: 'Laconic Network' },
|
||||
{ href: '/products/#laconicapp', title: 'Laconic App' },
|
||||
{ href: '/products/#laconictoken', title: 'Laconic Network Token (LNT)' }
|
||||
{ href: '/products/#laconicapp', title: 'Laconic App' }
|
||||
]
|
||||
|
||||
export const AboutLinks = [
|
||||
|
||||
@ -19,7 +19,6 @@ export const defaultHeaderLinks = [
|
||||
{ href: '/products#laconicstack', title: 'Stack' },
|
||||
{ href: '/products#laconicnetwork', title: 'Network' },
|
||||
{ href: '/products#laconicapp', title: 'App' },
|
||||
{ href: '/products#laconictoken', title: 'Network Token (LNT)' }
|
||||
]
|
||||
},
|
||||
{
|
||||
|
||||
@ -109,9 +109,6 @@ const About = ({
|
||||
<PageLayout footerData={footerData} headerData={headerData}>
|
||||
<Meta title="About | Laconic Network" />
|
||||
<Hero data={heroData} />
|
||||
<Team teamData={teamsData} data={teamsPageData} />
|
||||
<Whitepaper data={whitepaperData} />
|
||||
<Roadmap data={roadmapData} />
|
||||
<Related blogData={initialBlogPosts?.data} reduced={true} />
|
||||
</PageLayout>
|
||||
)
|
||||
|
||||
@ -23,7 +23,6 @@ import AppSection from '~/components/sections/products/app'
|
||||
import Hero from '~/components/sections/products/hero'
|
||||
import Network from '~/components/sections/products/network'
|
||||
import Stack from '~/components/sections/products/stack'
|
||||
import Token from '~/components/sections/products/token'
|
||||
import Watchers from '~/components/sections/products/watchers'
|
||||
import { FooterQuery } from '~/lib/cms/queries/footer'
|
||||
import { HeaderQuery } from '~/lib/cms/queries/header'
|
||||
@ -32,7 +31,6 @@ import {
|
||||
ProductsHero,
|
||||
ProductsNetwork,
|
||||
ProductsStack,
|
||||
ProductsToken,
|
||||
ProductsWatchers
|
||||
} from '~/lib/cms/queries/products'
|
||||
|
||||
@ -63,7 +61,6 @@ export const getStaticProps = async () => {
|
||||
stackData,
|
||||
networkData,
|
||||
appData,
|
||||
tokenData,
|
||||
footerData,
|
||||
headerData
|
||||
] = await Promise.all([
|
||||
@ -72,7 +69,6 @@ export const getStaticProps = async () => {
|
||||
request(ProductsStack),
|
||||
request(ProductsNetwork),
|
||||
request(ProductsApp),
|
||||
request(ProductsToken),
|
||||
request(FooterQuery),
|
||||
request(HeaderQuery)
|
||||
])
|
||||
@ -88,7 +84,6 @@ export const getStaticProps = async () => {
|
||||
stackData: stackData?.productsPage,
|
||||
networkData: networkData?.productsPage,
|
||||
appData: appData?.productsPage,
|
||||
tokenData: tokenData?.productsPage,
|
||||
footerData: footerData?.footer,
|
||||
headerData: headerData?.header,
|
||||
categories,
|
||||
@ -108,7 +103,6 @@ const Products = ({
|
||||
stackData,
|
||||
networkData,
|
||||
appData,
|
||||
tokenData,
|
||||
footerData,
|
||||
headerData
|
||||
}: InferGetStaticPropsType<typeof getStaticProps>) => {
|
||||
@ -120,7 +114,6 @@ const Products = ({
|
||||
<Stack data={stackData} />
|
||||
<Network data={networkData} />
|
||||
<AppSection data={appData} />
|
||||
<Token data={tokenData} />
|
||||
<Related blogData={initialBlogPosts?.data} reduced={true} />
|
||||
</PageLayout>
|
||||
)
|
||||
|
||||
Loading…
Reference in New Issue
Block a user