+
{visitSource &&
}
{visitText}
diff --git a/src/components/ui/sections/HeroSectionAlt.astro b/src/components/ui/sections/GiteaSection.astro
similarity index 97%
rename from src/components/ui/sections/HeroSectionAlt.astro
rename to src/components/ui/sections/GiteaSection.astro
index 1cc5819..e3d0163 100644
--- a/src/components/ui/sections/HeroSectionAlt.astro
+++ b/src/components/ui/sections/GiteaSection.astro
@@ -1,5 +1,5 @@
---
-import GiteaBtn from '@components/ui/buttons/GiteaBtn.astro';
+import GiteaButton from '@components/ui/buttons/GiteaButton.astro';
const { title, subTitle, url } = Astro.props;
const btnTitle = 'Continue to Gitea';
@@ -126,7 +126,7 @@ interface Props {
{
url && (
-
+
)
}
diff --git a/src/components/ui/sections/HeaderSection.astro b/src/components/ui/sections/HeaderSection.astro
index f63ac7d..5a712d6 100644
--- a/src/components/ui/sections/HeaderSection.astro
+++ b/src/components/ui/sections/HeaderSection.astro
@@ -1,5 +1,5 @@
---
-import PrimaryCTA from '@components/ui/buttons/PrimaryCTA.astro';
+import GoLinkPrimary from '@components/ui/buttons/GoLinkPrimary.astro';
interface Props {
title: string;
@@ -26,7 +26,7 @@ const { title, subTitle, btnExists, btnTitle, btnURL } = Astro.props;
{
btnExists ? (
) : null
}
diff --git a/src/components/ui/sections/HeroSection.astro b/src/components/ui/sections/HeroSection.astro
index ebcdd27..3d5d78b 100644
--- a/src/components/ui/sections/HeroSection.astro
+++ b/src/components/ui/sections/HeroSection.astro
@@ -1,6 +1,6 @@
---
-import PrimaryCTA from '@components/ui/buttons/PrimaryCTA.astro';
-import SecondaryCTA from '@components/ui/buttons/SecondaryCTA.astro';
+import GoLinkPrimary from '@components/ui/buttons/GoLinkPrimary.astro';
+import GoLinkSecondary from '@components/ui/buttons/GoLinkSecondary.astro';
import Image from '@components/ui/images/Image.astro';
const { title, subTitle, primaryBtn, primaryBtnURL, secondaryBtn, secondaryBtnURL, src, alt } =
@@ -39,8 +39,8 @@ const roundedClasses = Astro.props.rounded ? "rounded-xl" : null;
}
- {primaryBtn &&
}
- {secondaryBtn &&
}
+ {primaryBtn &&
}
+ {secondaryBtn &&
}
diff --git a/src/pages/404.astro b/src/pages/404.astro
index ae6e10d..b43334e 100644
--- a/src/pages/404.astro
+++ b/src/pages/404.astro
@@ -3,8 +3,8 @@ import { readSingleton } from '@directus/sdk';
import directus from '@lib/directus';
import BaseLayout from '@layouts/BaseLayout.astro';
-import PrimaryCTA from '@components/ui/buttons/PrimaryCTA.astro';
import GoBack from '@/components/ui/buttons/GoBack.astro';
+import GoHome from '@/components/ui/buttons/GoHome.astro';
const global = await directus.request(readSingleton('site_global'));
---
@@ -61,8 +61,8 @@ const global = await directus.request(readSingleton('site_global'));