Skip to content

Commit

Permalink
Updated Landing Page
Browse files Browse the repository at this point in the history
  • Loading branch information
MatheleMpiko committed Oct 10, 2024
1 parent 2db452a commit 5d33b84
Show file tree
Hide file tree
Showing 6 changed files with 194 additions and 40 deletions.
7 changes: 2 additions & 5 deletions dist/index.html
Original file line number Diff line number Diff line change
@@ -1,17 +1,15 @@

<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<link rel="icon" type="image/svg+xml" href="/assets/Logo-D-PRSjT1.png" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Property Hive</title>
<script type="module" crossorigin src="/assets/index-OBRrGf4N.js"></script>
<link rel="stylesheet" crossorigin href="/assets/index-BR2ZegIQ.css">
<script type="module" crossorigin src="/assets/index-DirGLvKn.js"></script>
<link rel="stylesheet" crossorigin href="/assets/index-BTxQunli.css">
</head>
<body>
<div id="root"></div>

</body>

<head>
Expand Down Expand Up @@ -42,7 +40,6 @@
</head>
<body>
<div id="root"></div>

</body>

</html>
193 changes: 169 additions & 24 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

7 changes: 2 additions & 5 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -12,14 +12,12 @@
"test:ui": "vitest --ui"
},
"dependencies": {

"@emotion/react": "^11.13.3",
"@emotion/styled": "^11.13.0",
"@fortawesome/fontawesome-svg-core": "^6.6.0",
"@fortawesome/free-solid-svg-icons": "^6.6.0",
"@fortawesome/react-fontawesome": "^0.2.2",
"@mui/material": "^6.1.2",

"@radix-ui/react-avatar": "^1.1.0",
"@radix-ui/react-dialog": "^1.1.1",
"@radix-ui/react-dropdown-menu": "^2.1.1",
Expand All @@ -28,6 +26,7 @@
"@radix-ui/react-separator": "^1.1.0",
"@radix-ui/react-slot": "^1.1.0",
"@reduxjs/toolkit": "^2.2.7",
"@swc/core": "^1.7.35",
"axios": "^1.7.7",
"class-variance-authority": "^0.7.0",
"clsx": "^2.1.1",
Expand All @@ -45,12 +44,10 @@
"react-modal": "^3.16.1",
"react-redux": "^9.1.2",
"react-router-dom": "^6.26.2",

"sonner": "^1.5.0",

"react-slick": "^0.30.2",
"recharts": "^2.12.7",
"slick-carousel": "^1.8.1",
"sonner": "^1.5.0",
"tailwind-merge": "^2.5.3",
"tailwindcss-animate": "^1.0.7"
},
Expand Down
6 changes: 4 additions & 2 deletions src/App.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,8 @@ import Inquiries from './pages/Inquiries';
import EditProperties from './pages/manage/EditProperties';
import Buyers from './pages/Buyers/Buyers';
import PropertyDescription from './pages/Buyers/PropertyDescription';
import PurchaseSuccessful from './pages/Buyers/purchaseSuccessful';
// import PurchaseSuccessful from './pages/Buyers/purchaseSuccessful';



function App() {
Expand All @@ -39,7 +40,7 @@ function App() {
<Routes>
<Route path='/properties/buyers' element={<Buyers />}/>
<Route path='/properties/buyers/:id' element={<PropertyDescription />}/>
<Route path='/properties/buyers/successful' element={<PurchaseSuccessful />} />
{/* <Route path='/properties/buyers/successful' element={<PurchaseSuccessful />} /> */}
<Route/>
</Routes>

Expand All @@ -50,6 +51,7 @@ function App() {
</Route>
</Routes>


<Routes>
{/* Authentication Routes */}
<Route path="/signin" element={<SignIn />} />
Expand Down
4 changes: 4 additions & 0 deletions src/Component/Pages/Home/Home.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -12,8 +12,12 @@ const Home = () => {
return (
<div className="bg-white">
<HeroSection />
<section id="features">
<Features />
</section>
<section id="testimonials">
<Testimonial />
</section>
<section id="contact">
<ContactUs />
</section>
Expand Down
17 changes: 13 additions & 4 deletions src/components/home/footer/footer.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -9,11 +9,20 @@ export default function Footer() {
Advertise <br /> your properties and elevate your business with a
trusted partner.
</p>

<div className='flex space-x-4 mt-7'>
<img src='/icon/facebook.png' alt='facebook' href="https://web.facebook.com/profile.php?id=61566534966411"/>
<img src='/icon/instagram.png' alt='insta' href="https://www.linkedin.com/company/propertyhivehq/"/>
<img src='/icon/linkedin.png' alt='linkedin' href="https://www.linkedin.com/company/propertyhivehq/"/>
<img src='/icon/x.png' alt='twitter' href="https://x.com/PropertyHiveHq"/>
<a href="https://web.facebook.com/profile.php?id=61566534966411" target="_blank" rel="noopener noreferrer">
<img src='/icon/facebook.png' alt='facebook' />
</a>
<a href="https://www.instagram.com/yourprofile" target="_blank" rel="noopener noreferrer">
<img src='/icon/instagram.png' alt='instagram' />
</a>
<a href="https://www.linkedin.com/company/propertyhivehq/" target="_blank" rel="noopener noreferrer">
<img src='/icon/linkedin.png' alt='linkedin' />
</a>
<a href="https://x.com/PropertyHiveHq" target="_blank" rel="noopener noreferrer">
<img src='/icon/x.png' alt='twitter' />
</a>
</div>
</div>
<div className='md:flex space-x-20 mt-14 hidden '>
Expand Down

0 comments on commit 5d33b84

Please sign in to comment.