File tree Expand file tree Collapse file tree 2 files changed +15
-18
lines changed
Expand file tree Collapse file tree 2 files changed +15
-18
lines changed Original file line number Diff line number Diff line change 1+ ---
2+ import { SITE } from " ~/config.mjs" ;
3+ import { getCanonical , getHomePermalink } from ' ~/utils/permalinks' ;
4+ import Layout from " ~/layouts/PageLayout.astro" ;
5+
6+
7+ const title = ` ${SITE .name } — Everyday is gameday here ` ;
8+ const description = " 🌽 HuskerJS is your clutch-time sports web dev platform." ;
9+ const canonical = new URL (" " , Astro .site );
10+ ---
11+
12+ <Layout meta ={ { title , description , canonical }} >
13+ <h1 >Work on this page has been discontinued due to a lack of interest</h1 >
14+ </Layout >
Original file line number Diff line number Diff line change @@ -3,29 +3,12 @@ import { SITE } from "~/config.mjs";
33import { getCanonical , getHomePermalink } from ' ~/utils/permalinks' ;
44import Layout from " ~/layouts/PageLayout.astro" ;
55
6- import Hero from " ~/components/widgets/Hero.astro" ;
7- import BasicCTA from " ~/components/widgets/BasicCTA.astro" ;
8- import BasicFeatures from " ~/components/widgets/BasicFeatures.astro" ;
9- import StepsFeatures from " ~/components/widgets/StepsFeatures.astro" ;
10- import BasicFAQs from " ~/components/widgets/BasicFAQs.astro" ;
11- import TwoColsFeatures from " ~/components/widgets/TwoColsFeatures.astro" ;
12- import StepsLeft from " ~/components/widgets/StepsLeft.astro" ;
13- import HighlightedPosts from " ~/components/widgets/HighlightedPosts.astro" ;
14- import Stats from " ~/components/widgets/Stats.astro" ;
156
167const title = ` ${SITE .name } — Everyday is gameday here ` ;
178const description = " 🌽 HuskerJS is your clutch-time sports web dev platform." ;
189const canonical = new URL (" " , Astro .site );
1910---
2011
2112<Layout meta ={ { title , description , canonical }} >
22- <Hero />
23- <BasicFeatures />
24- <StepsLeft />
25- <TwoColsFeatures />
26- <StepsFeatures />
27- <HighlightedPosts />
28- <BasicFAQs />
29- <Stats />
30- <BasicCTA />
13+ <h1 >Work on this page has been discontinued due to a lack of interest</h1 >
3114</Layout >
You can’t perform that action at this time.
0 commit comments