Skip to content

Commit

Permalink
chore: setup the playground page in given layout (#126)
Browse files Browse the repository at this point in the history
* feat: added new navbar

* fix: lint fix
  • Loading branch information
Srish-ty authored Oct 9, 2024
1 parent 408dcd8 commit 298b6e8
Show file tree
Hide file tree
Showing 2 changed files with 335 additions and 573 deletions.
6 changes: 3 additions & 3 deletions src/app/playground/page.js
Original file line number Diff line number Diff line change
@@ -1,17 +1,17 @@
'use client';
import Image from 'next/image';
import { LogoText, SubLogoText, Heading1, Heading2 } from '@/components/shared/Typography/Headings';
import { Paragraph, SubParagraph, SmallParagraph } from '@/components/shared/Typography/Paragraphs';
import { PrimaryButton, SecondaryButton } from '@/components/shared/Typography/Buttons';
import { NavbarLink } from '@/components/shared/Typography/Links';
import Navbar from '@/components/Marginals/navbar/navbar';
import { NavBar } from '@/components/NavBar/Nav';
import { Footer } from '@/components/Footer/Footer';
import Hero from '@/components/Hero Section/Hero';

const Page = () => {
return (
<>
<NavBar />
<Navbar />
<Hero />
<div style={styles.mainContainer}>
<Heading1>ABOUT US</Heading1>
Expand All @@ -37,7 +37,7 @@ const Page = () => {
<div style={styles.con2}>
<PrimaryButton>Get Started</PrimaryButton>
<SecondaryButton>
<img
<Image
src='https://about.x.com/content/dam/about-twitter/x/brand-toolkit/logo-black.png.twimg.1920.png'
alt=''
style={{ width: '20px', height: '20px' }}
Expand Down
Loading

0 comments on commit 298b6e8

Please sign in to comment.