Skip to content

Commit 41a6d86

Browse files
committed
feat: The landing page text changes
1 parent 860ddcf commit 41a6d86

2 files changed

Lines changed: 13 additions & 7 deletions

File tree

components/core/Landing.js

Lines changed: 8 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -352,7 +352,7 @@ const Landing = ({ setOpen, user, setUser }) => {
352352
<ActionBar>
353353
<Link href="/app">
354354
<Button className="navbar-action--primary">
355-
<FiPenTool />Try Now
355+
<FiSearch />Browse Now
356356
</Button>
357357
</Link>
358358
</ActionBar>
@@ -361,10 +361,14 @@ const Landing = ({ setOpen, user, setUser }) => {
361361
<Container>
362362
<Row>
363363
<Col>
364-
<h2 className="banner-title">Lorem ipsum dolor sit amet, consectetur adipiscing elit.</h2>
365-
<p className="banner-desc">Donec sodales lorem magna, ac venenatis elit euismod sit amet. Quisque dapibus sem sit amet mi rutrum egestas. Interdum et malesuada fames ac ante ipsum primis in faucibus. </p>
364+
<h2 className="banner-title">Create, Export, Share, and Use any Shapes of your choice.</h2>
365+
<p className="banner-desc">
366+
TryShape is an opensource platform to create shapes of your choice using a simple,
367+
easy-to-use interface. You can create banners, circles, polygonal shapes, export them as
368+
SVG, PNG, and even CSS.
369+
</p>
366370
<BannerBodyActions>
367-
<Link href="/app"><Button className="banner-action--primary"><FiSearch />Browse Now</Button></Link>
371+
<Link href="/app"><Button className="banner-action--primary"><FiPenTool/>Try Now</Button></Link>
368372
<Link href="/app"><Button className="banner-action--secondary"><FiGithub />GitHub</Button></Link>
369373
</BannerBodyActions>
370374
</Col>

components/utils/ShapeList.js

Lines changed: 5 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -352,12 +352,14 @@ const ShapeList = ({ setOpen, user, data }) => {
352352
onClick={(event, shapeId) => performLike(event, shape['shape_id'])}>
353353
{
354354
shape.liked ?
355-
(<Button variant="outline-light">
356-
<LikeFilledIcon size={24} />
355+
(
356+
<Button variant="outline-light">
357+
<LikeFilledIcon size={24} />
357358
</Button>
358359
)
359360
:
360-
(<Button variant="outline-light">
361+
(
362+
<Button variant="outline-light">
361363
<LikeIcon size={24} />
362364
</Button>
363365
)

0 commit comments

Comments
 (0)