From 3357a5c0d1b3315a54f9c564eb844c8aec5e403b Mon Sep 17 00:00:00 2001 From: Hoang-Nguyen-Huy Date: Wed, 2 Oct 2024 10:43:41 +0700 Subject: [PATCH] =?UTF-8?q?feat:=20=F0=9F=8E=B8=20ui=20contact?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/App.jsx | 2 + src/components/Contact.jsx | 219 +++++++++++++++++++++++++++++++++++++ 2 files changed, 221 insertions(+) create mode 100644 src/components/Contact.jsx diff --git a/src/App.jsx b/src/App.jsx index 18113e7..418b30c 100644 --- a/src/App.jsx +++ b/src/App.jsx @@ -7,6 +7,7 @@ import { Route, Routes } from "react-router-dom"; import OrchidDetail from "./components/OrchidDetail"; import SpecialOrchid from "./components/SpecialOrchid"; import About from "./components/About"; +import Contact from "./components/Contact"; function App() { const [count, setCount] = useState(0); @@ -19,6 +20,7 @@ function App() { } /> }> } /> + } />