Skip to content

Commit 1fdf14a

Browse files
committed
feat(*): Add brand logos / styling
1 parent cfbbd10 commit 1fdf14a

39 files changed

+3292
-10354
lines changed

examples/react/src/firebase/config.ts

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,5 +15,10 @@
1515
*/
1616

1717
export const firebaseConfig = {
18-
// your Firebase config here
18+
apiKey: "AIzaSyCvMftIUCD9lUQ3BzIrimfSfBbCUQYZf-I",
19+
authDomain: "fir-ui-rework.firebaseapp.com",
20+
projectId: "fir-ui-rework",
21+
storageBucket: "fir-ui-rework.firebasestorage.app",
22+
messagingSenderId: "200312857118",
23+
appId: "1:200312857118:web:94e3f69b0e0a4a863f040f"
1924
};

examples/react/src/index.css

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,4 +18,4 @@
1818
@import "@firebase-ui/styles/tailwind";
1919

2020
/* @import "@firebase-ui/styles/src/themes/dark.css"; */
21-
/* @import "@firebase-ui/styles/src/themes/brutalist.css"; */
21+
/* @import "@firebase-ui/styles/src/themes/brutalist.css"; */

examples/react/src/screens/sign-in-auth-screen-w-oauth.tsx

Lines changed: 21 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -16,18 +16,37 @@
1616

1717
"use client";
1818

19-
import { GoogleSignInButton, SignInAuthScreen } from "@firebase-ui/react";
19+
import { OAuthButton } from "@firebase-ui/react";
20+
import {
21+
AppleSignInButton,
22+
GoogleSignInButton,
23+
SignInAuthScreen,
24+
FacebookSignInButton,
25+
GitHubSignInButton,
26+
MicrosoftSignInButton,
27+
TwitterSignInButton,
28+
} from "@firebase-ui/react";
29+
import { OAuthProvider } from "firebase/auth";
2030
import { useNavigate } from "react-router";
2131

2232
export default function SignInAuthScreenWithOAuthPage() {
2333
const navigate = useNavigate();
2434

35+
const p = new OAuthProvider('oidc.foobar')
36+
2537
return (
2638
<SignInAuthScreen
2739
onForgotPasswordClick={() => navigate("/password-reset-screen")}
2840
onRegisterClick={() => navigate("/sign-up-auth-screen")}
2941
>
30-
<GoogleSignInButton />
42+
<div className="space-y-2">
43+
<GoogleSignInButton />
44+
<FacebookSignInButton />
45+
<AppleSignInButton />
46+
<GitHubSignInButton />
47+
<MicrosoftSignInButton />
48+
<TwitterSignInButton />
49+
</div>
3150
</SignInAuthScreen>
3251
);
3352
}
Lines changed: 1 addition & 0 deletions
Loading
Lines changed: 1 addition & 0 deletions
Loading
Lines changed: 1 addition & 0 deletions
Loading
Lines changed: 1 addition & 0 deletions
Loading

packages/core/brands/line/logo.svg

Lines changed: 1 addition & 0 deletions
Loading
Lines changed: 1 addition & 0 deletions
Loading
Lines changed: 1 addition & 0 deletions
Loading

0 commit comments

Comments
 (0)