diff --git a/src/UbuntuIndia.svg b/src/UbuntuIndia.svg new file mode 100644 index 0000000..8f4187a --- /dev/null +++ b/src/UbuntuIndia.svg @@ -0,0 +1,190 @@ + +India diff --git a/src/config.ts b/src/config.ts index 41991c5..62e1420 100644 --- a/src/config.ts +++ b/src/config.ts @@ -1,9 +1,19 @@ +import UbuntuIndiaLogo from "./UbuntuIndia.svg" + export const config = { siteTitle: "UbuCon Asia 2024", - blog:{ - rssFeedUrl:"https://blog.ubucon.asia/tags/ubucon/index.xml", + blog: { + rssFeedUrl: "https://blog.ubucon.asia/tags/ubucon/index.xml", viewMoreUrl: "https://blog.ubucon.asia/" }, + footer: { + copyright: "© 2024-Present UbuCon Asia Committee. Ubuntu and Canonical are registered trademarks of Canonical Ltd. Unless otherwise noted, content licensed under CC BY 4.0 source code under MIT.", + contactUs: "mailto:contact@ubucon.asia", + srcRepoUrl: "https://github.com/ubucon-asia/2024.ubucon.asia", + organizers: [ + { name: "Ubuntu India", logoImage: UbuntuIndiaLogo.src, link: "https://www.ubucon.asia" } + ] + }, navigation: [ { label: 'About', diff --git a/src/layouts/Shell.astro b/src/layouts/Shell.astro index 275436c..f2545cc 100644 --- a/src/layouts/Shell.astro +++ b/src/layouts/Shell.astro @@ -12,10 +12,53 @@ import { config } from "../config"; --- - - +
+ + + +
diff --git a/src/pages/index.astro b/src/pages/index.astro index 27c9e51..983674e 100644 --- a/src/pages/index.astro +++ b/src/pages/index.astro @@ -2,7 +2,7 @@ import Shell from "../layouts/Shell.astro"; import BlogFeed from "../components/BlogFeed.astro"; import { config } from "../config"; -import { Strip, Col, Row, List } from "@canonical/react-components"; +import { Strip, Col, Row, } from "@canonical/react-components"; import uca24logo from "./logo.svg"; import logoPlaceHolder from "./logo_placeholder.svg"; ---