Skip to content

Commit 8cf595e

Browse files
Remove beta branding from homepage
1 parent 5063bbf commit 8cf595e

3 files changed

Lines changed: 19 additions & 23 deletions

File tree

src/components/Common/Footer.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -97,7 +97,7 @@ export const Footer: React.FC = () => {
9797
<div className="mb-2 flex flex-col items-start gap-1 md:mb-0 md:items-center md:gap-0.5">
9898
<div className="flex items-center gap-2">
9999
<Image
100-
src="/maia-no-bg.png"
100+
src="/maia-ios-icon.png"
101101
alt="Maia Chess"
102102
width={26}
103103
height={26}

src/components/Common/Header.tsx

Lines changed: 18 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -140,7 +140,12 @@ export const Header: React.FC = () => {
140140
<div className="flex w-[90%] flex-row items-center justify-between">
141141
<div className="flex flex-row items-center justify-start gap-6">
142142
<Link href="/" className="flex flex-row items-center gap-2">
143-
<Image src="/maia.png" width={40} height={40} alt="Maia Logo" />
143+
<Image
144+
src="/maia-ios-icon.png"
145+
width={40}
146+
height={40}
147+
alt="Maia Logo"
148+
/>
144149
<h2 className="text-2xl font-bold">Maia Chess</h2>
145150
</Link>
146151
<div className="hidden flex-row gap-1 text-sm tracking-wider md:flex">
@@ -327,7 +332,12 @@ export const Header: React.FC = () => {
327332
<div className="flex w-full flex-row justify-between px-4">
328333
<Link href="/" passHref>
329334
<div className="flex flex-row items-center gap-2">
330-
<Image src="/maia.png" width={40} height={40} alt="Maia Logo" />
335+
<Image
336+
src="/maia-ios-icon.png"
337+
width={40}
338+
height={40}
339+
alt="Maia Logo"
340+
/>
331341
<h2 className="text-2xl font-bold">Maia Chess</h2>
332342
</div>
333343
</Link>
@@ -343,7 +353,12 @@ export const Header: React.FC = () => {
343353
<div className="flex w-full flex-row justify-between px-4">
344354
<Link href="/" passHref>
345355
<div className="flex flex-row items-center gap-2">
346-
<Image src="/maia.png" width={40} height={40} alt="Maia Logo" />
356+
<Image
357+
src="/maia-ios-icon.png"
358+
width={40}
359+
height={40}
360+
alt="Maia Logo"
361+
/>
347362
<h2 className="text-2xl font-bold">Maia Chess</h2>
348363
</div>
349364
</Link>

src/components/Home/HomeHero.tsx

Lines changed: 0 additions & 19 deletions
Original file line numberDiff line numberDiff line change
@@ -140,7 +140,6 @@ export const HomeHero: React.FC<Props> = ({ scrollHandler }: Props) => {
140140

141141
return (
142142
<Fragment>
143-
<BetaBlurb />
144143
<div className="relative flex flex-col items-center justify-center gap-4 overflow-hidden pb-6 pt-4 md:gap-14 md:pt-16">
145144
<div className="z-10 flex w-full max-w-[1200px] flex-col items-center justify-center gap-10 p-4 text-left md:flex-row md:gap-20">
146145
<div className="flex w-full flex-col items-start justify-center gap-6 md:w-[45%] md:gap-8">
@@ -272,21 +271,3 @@ export const HomeHero: React.FC<Props> = ({ scrollHandler }: Props) => {
272271
</Fragment>
273272
)
274273
}
275-
276-
function BetaBlurb() {
277-
return (
278-
<div className="mt-2 flex items-center justify-center md:mt-10">
279-
<div className="select-none rounded-full border border-glass-border bg-black/20 px-6 py-2.5 backdrop-blur-sm transition-all duration-200 hover:border-white/15">
280-
<div className="flex flex-row items-center gap-2">
281-
<span className="material-symbols-outlined material-symbols-filled text-sm text-white/90">
282-
favorite
283-
</span>
284-
<p className="text-sm text-white/90">
285-
Maia Chess is in open beta. You now have full access to the
286-
platform!
287-
</p>
288-
</div>
289-
</div>
290-
</div>
291-
)
292-
}

0 commit comments

Comments
 (0)