diff --git a/front/public/pictures/sea.gif b/front/public/pictures/sea.gif new file mode 100644 index 0000000..78a4617 Binary files /dev/null and b/front/public/pictures/sea.gif differ diff --git a/front/src/components/Button.tsx b/front/src/components/Button.tsx index 6d1fdf4..654bda5 100644 --- a/front/src/components/Button.tsx +++ b/front/src/components/Button.tsx @@ -16,7 +16,7 @@ export default function Button({ onClick, color, children }: ButtonProps) { cursor: 'pointer', display: 'inline-block', fontFamily: '"Haas Grot Text R Web", "Helvetica Neue", Helvetica, Arial, sans-serif', - fontSize: '14px', + fontSize: '20px', fontWeight: '500', lineHeight: '20px', listStyle: 'none', diff --git a/front/src/components/ClickableLink.tsx b/front/src/components/ClickableLink.tsx index 7cf03eb..0096871 100644 --- a/front/src/components/ClickableLink.tsx +++ b/front/src/components/ClickableLink.tsx @@ -9,6 +9,7 @@ export default function ClickableLink({url, text}: ClickableLinkProps) { backgroundColor: "transparent", borderRadius: '8px', borderWidth: '0', + color:"purple", cursor: 'pointer', display: 'inline-block', fontFamily: '"Haas Grot Text R Web", "Helvetica Neue", Helvetica, Arial, sans-serif', diff --git a/front/src/components/FstSection.tsx b/front/src/components/FstSection.tsx new file mode 100644 index 0000000..a978737 --- /dev/null +++ b/front/src/components/FstSection.tsx @@ -0,0 +1,38 @@ +import Button from "./Button"; +import NavBar from "./NavBar"; + +interface FstSectionProps { + centertxt: string; + txtbt1:string; + txtbt2:string; + image:string; +} + +export default function FstSection ({centertxt, txtbt1, txtbt2, image}: FstSectionProps) { + return ( +
+ +
+
+

{centertxt}


+
+
+
+ ) +} \ No newline at end of file diff --git a/front/src/components/NavBar.tsx b/front/src/components/NavBar.tsx index 7c170d9..b589d20 100644 --- a/front/src/components/NavBar.tsx +++ b/front/src/components/NavBar.tsx @@ -4,14 +4,14 @@ import RoundButton from './RoundButton.tsx'; export default function NavBar(){ return ( -