diff --git a/json/site_content/homePage.json b/json/site_content/homePage.json
index ab68ba1..29c2642 100644
--- a/json/site_content/homePage.json
+++ b/json/site_content/homePage.json
@@ -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"
}
}
-}
\ No newline at end of file
+}
diff --git a/src/components/common/footer/footer.tsx b/src/components/common/footer/footer.tsx
index 59f7283..b45daa4 100644
--- a/src/components/common/footer/footer.tsx
+++ b/src/components/common/footer/footer.tsx
@@ -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 = [
diff --git a/src/components/common/header/header.ts b/src/components/common/header/header.ts
index e860a37..ccf1ef8 100644
--- a/src/components/common/header/header.ts
+++ b/src/components/common/header/header.ts
@@ -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)' }
]
},
{
diff --git a/src/pages/about.tsx b/src/pages/about.tsx
index 144b1ef..7b5df3e 100644
--- a/src/pages/about.tsx
+++ b/src/pages/about.tsx
@@ -109,9 +109,6 @@ const About = ({
-
-
-
)
diff --git a/src/pages/products.tsx b/src/pages/products.tsx
index 9aba80e..68563b9 100644
--- a/src/pages/products.tsx
+++ b/src/pages/products.tsx
@@ -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) => {
@@ -120,7 +114,6 @@ const Products = ({
-
)