Skip to content

Commit 66c3cd1

Browse files
remove state of startups 2025 banners (supabase#36778)
1 parent 2aee615 commit 66c3cd1

File tree

2 files changed

+1
-9
lines changed

2 files changed

+1
-9
lines changed

apps/www/components/Hero/Hero.tsx

Lines changed: 0 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,6 @@ import Link from 'next/link'
33
import { Button } from 'ui'
44
import SectionContainer from '~/components/Layouts/SectionContainer'
55
import { useSendTelemetryEvent } from '~/lib/telemetry'
6-
import AnnouncementBadge from '../Announcement/Badge'
76

87
const Hero = () => {
98
const sendTelemetryEvent = useSendTelemetryEvent()
@@ -16,12 +15,6 @@ const Hero = () => {
1615
<div className="mx-auto max-w-2xl lg:col-span-6 lg:flex lg:items-center justify-center text-center">
1716
<div className="relative z-10 lg:h-auto pt-[90px] lg:pt-[90px] lg:min-h-[300px] flex flex-col items-center justify-center sm:mx-auto md:w-3/4 lg:mx-0 lg:w-full gap-4 lg:gap-8">
1817
<div className="flex flex-col items-center">
19-
<AnnouncementBadge
20-
url="/state-of-startups"
21-
announcement="Take the survey"
22-
badge="State of Startups 2025"
23-
className="mb-8 -mt-4 lg:-mt-8"
24-
/>
2518
<h1 className="text-foreground text-4xl sm:text-5xl sm:leading-none lg:text-7xl">
2619
<span className="block text-foreground">Build in a weekend</span>
2720
<span className="text-brand block md:ml-0">Scale to millions</span>

apps/www/components/Nav/index.tsx

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ import MobileMenu from './MobileMenu'
2424
import RightClickBrandLogo from './RightClickBrandLogo'
2525
import { useSendTelemetryEvent } from '~/lib/telemetry'
2626
import useDropdownMenu from './useDropdownMenu'
27-
import { AnnouncementBanner, AuthenticatedDropdownMenu } from 'ui-patterns'
27+
import { AuthenticatedDropdownMenu } from 'ui-patterns'
2828

2929
interface Props {
3030
hideNavbar: boolean
@@ -71,7 +71,6 @@ const Nav = ({ hideNavbar, stickyNavbar = true }: Props) => {
7171

7272
return (
7373
<>
74-
<AnnouncementBanner />
7574
<div
7675
className={cn('sticky top-0 z-40 transform', disableStickyNav && 'relative')}
7776
style={{ transform: 'translate3d(0,0,999px)' }}

0 commit comments

Comments
 (0)