diff --git a/website/src/components/Video.astro b/website/src/components/Video.astro new file mode 100644 index 00000000000..4377ac20f6f --- /dev/null +++ b/website/src/components/Video.astro @@ -0,0 +1,29 @@ +--- +const { url } = Astro.props; +--- + +
+ +
+ diff --git a/website/src/components/footer/footer.astro b/website/src/components/footer/footer.astro index 1e76bfa06f7..9b33823dd2c 100644 --- a/website/src/components/footer/footer.astro +++ b/website/src/components/footer/footer.astro @@ -1,5 +1,6 @@ --- import { Links } from "@site/src/constants"; +import { Icon } from "@astrojs/starlight/components"; import ThemePicker from "@typespec/astro-utils/components/theme-picker.astro"; import Link from "@typespec/astro-utils/components/link.astro"; import MicrosoftLogo from "./microsoft-logo.astro"; @@ -100,6 +101,14 @@ const { class: className } = Astro.props; background-color: var(--colorBrandForeground1); border-radius: 50%; } + + .icon { + color: var(--colorNeutralForeground1); /* Set icon color to black */ + } + + .icon:hover { + color: var(--colorNeutralForeground2); /* Set icon hover color to white */ + }