Skip to content

Commit dc0aa5a

Browse files
authored
Merge pull request #228 from Pseudo-Lab/feat/getcloser/frontend-waiting
feat(getcloser): implement waiting all the team members ready
2 parents a0aa610 + c57c512 commit dc0aa5a

5 files changed

Lines changed: 259 additions & 135 deletions

File tree

getcloser/frontend/package-lock.json

Lines changed: 11 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

getcloser/frontend/package.json

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -12,6 +12,7 @@
1212
"@radix-ui/react-label": "^2.1.7",
1313
"@radix-ui/react-slot": "^1.2.3",
1414
"@tanstack/react-query": "^5.90.2",
15+
"boring-avatars": "^2.0.4",
1516
"class-variance-authority": "^0.7.1",
1617
"clsx": "^2.1.1",
1718
"js-cookie": "^3.0.5",

getcloser/frontend/src/app/globals.css

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -51,3 +51,7 @@ html {
5151
--font-sans: var(--font-dongle);
5252
--font-mono: var(--font-geist-mono);
5353
}
54+
55+
.material-symbols-outlined.filled {
56+
font-variation-settings: 'FILL' 1, 'wght' 400, 'GRAD' 0, 'opsz' 24;
57+
}

getcloser/frontend/src/app/layout.tsx

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -39,6 +39,9 @@ export default function RootLayout({
3939

4040
return (
4141
<html lang="en" style={{ background: 'linear-gradient(to bottom, hsl(160 40% 10%) 0%, hsl(160 40% 15%) 40%, hsl(160 40% 20%) 100%)' }} className="min-h-screen">
42+
<head>
43+
<link href="https://fonts.googleapis.com/css2?family=Material+Symbols+Outlined:opsz,wght,FILL,GRAD@20..48,100..700,0..1,-50..200" rel="stylesheet" />
44+
</head>
4245
<body
4346
className={`${geistSans.variable} ${geistMono.variable} ${dongle.variable} antialiased`}
4447
>

0 commit comments

Comments
 (0)