Skip to content

Commit 5b96dae

Browse files
push
1 parent 75b206a commit 5b96dae

File tree

2 files changed

+15
-18
lines changed

2 files changed

+15
-18
lines changed

src/pages/about.astro

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,14 @@
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>

src/pages/resources.astro

Lines changed: 1 addition & 18 deletions
Original file line numberDiff line numberDiff line change
@@ -3,29 +3,12 @@ import { SITE } from "~/config.mjs";
33
import { getCanonical, getHomePermalink } from '~/utils/permalinks';
44
import 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
167
const title = `${SITE.name} — Everyday is gameday here`;
178
const description = "🌽 HuskerJS is your clutch-time sports web dev platform.";
189
const 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>

0 commit comments

Comments
 (0)