Skip to content

Commit 005fc07

Browse files
authored
Merge pull request #82 from apsinghdev/ui-fixes
Pricing page
2 parents f424238 + c727fc1 commit 005fc07

File tree

23 files changed

+1275
-236
lines changed

23 files changed

+1275
-236
lines changed

apps/web/public/assets/card_bg.png

773 KB
Loading

apps/web/public/assets/card_bg.svg

Lines changed: 52 additions & 0 deletions
Loading

apps/web/public/assets/fluted_bg.svg

Lines changed: 315 additions & 0 deletions
Loading

apps/web/public/assets/layer1.svg

Lines changed: 38 additions & 0 deletions
Loading

apps/web/public/assets/logo.svg

Lines changed: 1 addition & 1 deletion
Loading

apps/web/public/assets/logo_var2.svg

Lines changed: 1 addition & 1 deletion
Loading
Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,13 @@
1+
import Navbar from '@/components/landing-sections/navbar'
2+
import React from 'react'
3+
4+
const Layout = ({ children }: { children: React.ReactNode }) => {
5+
return (
6+
<section>
7+
<Navbar />
8+
{children}
9+
</section>
10+
)
11+
}
12+
13+
export default Layout

apps/web/src/app/(main)/(landing)/page.tsx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -14,8 +14,8 @@ import React from 'react'
1414
const Landing = () => {
1515
return (
1616
<main className='min-h-screen w-full bg-[#101010] text-white font-sans overflow-hidden relative'>
17-
<Navbar/>
18-
<div className="min-h-screen w-full max-w-[2000px] mx-auto border-x border-[#202020] overflow-hidden">
17+
<Navbar />
18+
<div className="min-h-screen w-full max-w-[2000px] mx-auto border-x border-[#252525] overflow-hidden">
1919
<Hero />
2020
<Bento />
2121
<Video />

0 commit comments

Comments
 (0)