Skip to content

Commit

Permalink
new hero
Browse files Browse the repository at this point in the history
  • Loading branch information
lifeparticle committed Oct 15, 2023
1 parent ee60331 commit e67cb7a
Show file tree
Hide file tree
Showing 5 changed files with 12 additions and 8 deletions.
Binary file added ui/src/assets/Home/hero.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
1 change: 0 additions & 1 deletion ui/src/assets/Home/hero.svg

This file was deleted.

5 changes: 5 additions & 0 deletions ui/src/pages/About/components/Credits.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -73,6 +73,11 @@ const CREDITS_DATA: Credits[] = [
name: "Lucide",
url: "https://lucide.dev/",
},
{
key: "11",
name: "Dudeowl",
url: "https://99designs.com.au/profiles/dudeowl",
},
];

const DATA = CREDITS_DATA.map((credit) => (
Expand Down
12 changes: 6 additions & 6 deletions ui/src/pages/CSS/BoxShadow/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -62,24 +62,24 @@ const BoxShadow = () => {
<Slider
value={horizontalLength}
onChange={(value: number) => {
if (value) {
setHorizontalLength(value);
}
setHorizontalLength(value);
}}
min={-100}
max={100}
included={false}
tooltip={{ open: true }}
/>
</Form.Item>
<Form.Item label="Vertical length">
<Slider
value={verticalLength}
onChange={(value) => {
if (value) {
setVerticalLength(value);
}
setVerticalLength(value);
}}
min={-100}
max={100}
included={false}
tooltip={{ open: true }}
/>
</Form.Item>
<Form.Item label="Blur radius">
Expand Down
2 changes: 1 addition & 1 deletion ui/src/pages/Home/components/Hero.tsx
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
import React from "react";
import style from "pages/Home/Home.module.scss";
import { Typography, Image } from "antd";
import hero from "assets/Home/hero.svg";
import hero from "assets/Home/hero.png";
import { FEATURE_DATA } from "data/featureData";

const { Title } = Typography;
Expand Down

0 comments on commit e67cb7a

Please sign in to comment.