From 005d071d3a130bf2a018f5ee94d695d65ed40e17 Mon Sep 17 00:00:00 2001 From: Yoga Pangestu Date: Thu, 3 Sep 2026 19:12:46 +0700 Subject: [PATCH] feat: add social media icons for Instagram, Facebook, and TikTok in the Welcome component --- resources/js/pages/welcome.tsx | 43 ++++++++++++++++++++++++++++++---- 1 file changed, 38 insertions(+), 5 deletions(-) diff --git a/resources/js/pages/welcome.tsx b/resources/js/pages/welcome.tsx index 26401fb..b8f541d 100644 --- a/resources/js/pages/welcome.tsx +++ b/resources/js/pages/welcome.tsx @@ -12,7 +12,9 @@ import { ArrowRight, Check, ChevronRight, + Facebook, Info, + Instagram, LogIn, Mail, MapPin, @@ -24,6 +26,14 @@ import { } from 'lucide-react'; import { useCallback, useEffect, useRef, useState } from 'react'; +function TiktokIcon({ className }: { className?: string }) { + return ( + + ); +} + type Props = { appName: string; aboutApp: string | null; @@ -617,22 +627,45 @@ export default function Welcome({
  • Tentang Kami
  • Cara Pemesanan
  • Hubungi Kami
  • -
  • Login Dashboard Admin
  • Sosial Media

    Ikuti sosial media kami untuk mendapatkan update produk terbaru.

    -
    +
    {instagramUrl && ( - Instagram + + + )} {facebookUrl && ( - Facebook + + + )} {tiktokUrl && ( - TikTok + + + )}