diff --git a/src/components/Home/Hero.astro b/src/components/Home/Hero.astro index 65ee522..5ef82cc 100644 --- a/src/components/Home/Hero.astro +++ b/src/components/Home/Hero.astro @@ -1,10 +1,10 @@ --- import { getCollection } from "astro:content"; -import Header from "../Header.astro"; import { Image } from "astro:assets"; import logoImage from "../../assets/openAMP_combox_dark.svg"; import FirstItem from "../News/FirstItem.astro"; import dayjs from "dayjs"; +import heroImage from "../../assets/images/triangle_background.png"; const { data } = Astro.props; const blogs = await getCollection("news"); @@ -13,16 +13,17 @@ const blogLists = blogs .slice(0, 2); --- -
-
- +
+ +
- openAMP Logo +
+ openAMP Logo -

- {data.main_body} -

- View on Github +

+ {data.main_body} +

+ View on GitHub +
- - - - - -
- -
+ initTE({ Carousel }); + diff --git a/src/content/pages/404.md b/src/content/pages/404.md new file mode 100644 index 0000000..e2db4da --- /dev/null +++ b/src/content/pages/404.md @@ -0,0 +1,18 @@ +--- +permalink: /404.html +title: 404 page not found! +description: > + 404 page not found +links: + - title: General Information + style: text-center + url: /about/ + - title: Governance + style: text-center + url: /governance/ + - title: News + style: text-center + url: /news/ + - title: Contact Us + url: https://www.linaro.org/contact/ +--- diff --git a/src/layouts/MainLayout.astro b/src/layouts/MainLayout.astro index 4ba93f2..eda3faf 100644 --- a/src/layouts/MainLayout.astro +++ b/src/layouts/MainLayout.astro @@ -12,7 +12,4 @@ import "../styles/global.scss";