diff --git a/frontend/public/android-chrome-192x192.png b/frontend/public/android-chrome-192x192.png deleted file mode 100644 index 0a19823e..00000000 Binary files a/frontend/public/android-chrome-192x192.png and /dev/null differ diff --git a/frontend/public/android-chrome-512x512.png b/frontend/public/android-chrome-512x512.png deleted file mode 100644 index bc6f812e..00000000 Binary files a/frontend/public/android-chrome-512x512.png and /dev/null differ diff --git a/frontend/public/apple-touch-icon.png b/frontend/public/apple-touch-icon.png deleted file mode 100644 index 98d358c5..00000000 Binary files a/frontend/public/apple-touch-icon.png and /dev/null differ diff --git a/frontend/src/components/CallToAction.tsx b/frontend/src/components/CallToAction.tsx new file mode 100644 index 00000000..4206a28e --- /dev/null +++ b/frontend/src/components/CallToAction.tsx @@ -0,0 +1,35 @@ +import { ArrowRight, Share2 } from 'lucide-react' +import { Link } from 'react-router-dom' + +interface CallToActionProps { + title: string + description: string + buttonText: string + buttonLink: string +} + +export const CallToAction = ({ title, description, buttonText, buttonLink }: CallToActionProps) => { + return ( +
+
+
+
+
+ +
+
+

{title}

+

{description}

+
+ + {buttonText} + + +
+
+
+ ) +} \ No newline at end of file diff --git a/frontend/src/components/layout/Navigation.tsx b/frontend/src/components/layout/Navigation.tsx index 335bbb31..23c3423f 100644 --- a/frontend/src/components/layout/Navigation.tsx +++ b/frontend/src/components/layout/Navigation.tsx @@ -43,7 +43,7 @@ export const Navigation = ({ onToggleSidebar, showMenuButton }: NavigationProps) return (