Skip to content

Commit

Permalink
fix imports
Browse files Browse the repository at this point in the history
  • Loading branch information
brendan-defi committed Feb 11, 2025
1 parent f082a53 commit e463f96
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
6 changes: 3 additions & 3 deletions apps/web/app/(base-org)/developers/page.tsx
Original file line number Diff line number Diff line change
@@ -1,14 +1,14 @@
import type { Metadata } from 'next';
import AnalyticsProvider from 'apps/web/contexts/Analytics';
import Container from 'apps/web/src/components/base-org/Container';
import { Hero } from 'apps/web/src/components/Developers/components/Hero';
import { Hero } from 'apps/web/src/components/Developers/Hero';
import { UseCases } from 'apps/web/src/components/Developers/UseCases';
import { Customers } from 'apps/web/src/components/Developers/components/Customers';
import { Customers } from 'apps/web/src/components/Developers/Customers';
import { Testimonials } from 'apps/web/src/components/Developers/Testimonials';
import { Tools } from 'apps/web/src/components/Developers/Tools';
import { WhyBase } from 'apps/web/src/components/Developers/WhyBase';
import { LiveDemo } from 'apps/web/src/components/Developers/LiveDemo';
import { BottomCta } from 'apps/web/src/components/Developers/components/BottomCta';
import { BottomCta } from 'apps/web/src/components/Developers/BottomCta';

export const metadata: Metadata = {
metadataBase: new URL('https://base.org'),
Expand Down
2 changes: 1 addition & 1 deletion apps/web/src/components/Developers/Hero/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@ export function Hero() {
}, []);

return (
<div className="flex w-full flex-col items-center justify-center bg-black mb-20">
<div className="mb-20 flex w-full flex-col items-center justify-center bg-black">
<div className="flex h-[660px] w-full flex-col items-center justify-center">
<Title className="font-display text-[1.25rem] leading-[1.2em] tracking-tight md:text-[2rem] lg:text-[3rem]">
What do you want to build?
Expand Down

0 comments on commit e463f96

Please sign in to comment.