Skip to content

Commit 2e0bf2c

Browse files
authored
Add links to hugging face (#2543)
1 parent 0bb0bee commit 2e0bf2c

File tree

5 files changed

+12
-3
lines changed

5 files changed

+12
-3
lines changed

website/public/locales/en/common.json

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -58,5 +58,6 @@
5858
"users_dashboard": "Users Dashboard",
5959
"yes": "Yes",
6060
"who_are_we": "Who are we?",
61-
"team": "Team"
61+
"team": "Team",
62+
"hugging_face": "HuggingFace"
6263
}

website/public/locales/en/index.json

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,5 +21,6 @@
2121
"join_us_description": "All open source projects begin with people like you. Open source is the belief that if we collaborate we can together gift our knowledge and technology to the world for the benefit of humanity. Are you in? Find us here:",
2222
"join_us_title": "Join us",
2323
"subtitle": "Conversational AI for everyone.",
24-
"try_our_assistant": "Try our assistant"
24+
"try_our_assistant": "Try our assistant",
25+
"hugging_face_link": "Checkout our HuggingFace organization"
2526
}

website/src/components/Dashboard/SlimFooter.tsx

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -21,6 +21,7 @@ export function SlimFooter() {
2121
<FooterLink href="/terms-of-service" label={t("terms_of_service")} />
2222
<FooterLink href="/team" label={t("team")} />
2323
<FooterLink href="https://github.com/LAION-AI/Open-Assistant" label={t("github")} />
24+
<FooterLink href="https://huggingface.co/OpenAssistant" label={t("hugging_face")} />
2425
<FooterLink href="https://ykilcher.com/open-assistant-discord" label={t("discord")} />
2526
<FooterLink href="https://projects.laion.ai/Open-Assistant/" label={t("docs")} />
2627
<FooterLink href="https://projects.laion.ai/Open-Assistant/docs/faq" label={t("faq")} />

website/src/components/Footer.tsx

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -58,6 +58,7 @@ export function Footer() {
5858
</Text>
5959
<FooterLink href="https://github.com/LAION-AI/Open-Assistant" label={t("github")} />
6060
<FooterLink href="https://ykilcher.com/open-assistant-discord" label={t("discord")} />
61+
<FooterLink href="https://huggingface.co/OpenAssistant" label={t("hugging_face")} />
6162
</Flex>
6263
<Flex direction="column" alignItems={["center", "start"]}>
6364
<Text fontWeight="bold" color={textColor}>

website/src/components/Hero.tsx

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ export function Hero() {
2929
</Text>
3030
<Text className={`mt-6 text-lg ${pTextColor}`}>{t("blurb")}</Text>
3131
<Text className={`mt-6 text-lg ${pTextColor}`}>{t("blurb1")}</Text>
32-
<Box className={`mt-6 flex gap-6 ${pTextColor}`}>
32+
<Box className={`mt-6 flex gap-6 ${pTextColor} flex-wrap`}>
3333
{getEnv().ENABLE_CHAT && (
3434
<Link href="/chat" aria-label="Chat">
3535
<Button variant="solid" colorScheme="blue" px={5} py={6}>
@@ -42,6 +42,11 @@ export function Hero() {
4242
{t("index:help_us_improve")}
4343
</Button>
4444
</Link>
45+
<Link href="https://huggingface.co/OpenAssistant" aria-label="Hugging face">
46+
<Button variant="outline" px={5} py={6}>
47+
{t("index:hugging_face_link")}
48+
</Button>
49+
</Link>
4550
</Box>
4651
</Box>
4752
<Box className="relative mt-10 sm:mt-20 lg:col-span-5 lg:row-span-2 lg:mt-0 xl:col-span-6">

0 commit comments

Comments
 (0)