Skip to content

Commit

Permalink
Merge pull request #3 from McRonaah/Development
Browse files Browse the repository at this point in the history
Development
  • Loading branch information
McRonaah authored Sep 4, 2024
2 parents 25a127c + 99e5364 commit 1f43d5c
Show file tree
Hide file tree
Showing 29 changed files with 1,320 additions and 544 deletions.
1,103 changes: 859 additions & 244 deletions package-lock.json

Large diffs are not rendered by default.

3 changes: 3 additions & 0 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -38,5 +38,8 @@
"last 1 firefox version",
"last 1 safari version"
]
},
"devDependencies": {
"tailwindcss": "^3.4.1"
}
}
3 changes: 2 additions & 1 deletion src/App.css
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
/*
.App {
text-align: center;
}
Expand Down Expand Up @@ -35,4 +36,4 @@
to {
transform: rotate(360deg);
}
}
} */
18 changes: 11 additions & 7 deletions src/App.js
Original file line number Diff line number Diff line change
Expand Up @@ -2,25 +2,29 @@ import React from "react";
import { Routes, Route } from 'react-router-dom';
import './App.css';
import NavBar from './components/NavBar';
import Home from "./components/Home";
import About from './components/About';
import Services from './components/Services';

import Home from "./components/Home/Home";
import About from './components/About/About';
import Portfolio from "./components/Portfolio/Portfolio";
import Services from './components/Services/Services';
import Contact from "./components/Contact/Contact";

import Footer from "./components/Footer";


const App = () => (
<>
<div className="router" style={{ display: 'flex' }}>
<div style={{ width: '20%', padding: '20px' }}>
<div>
<div>
<NavBar />
</div>
{/* <div style={{ width: '80%', padding: '20px' }}> */}
<Routes>
<Route exact path="/" element={<Home />} />
<Route path="/about" element={<About />} />
<Route path="/portfolio" element={<Portfolio />} />
<Route path="/services" element={<Services />} />
<Route path="/contact" element={<Contact />} />
</Routes>
{/* </div> */}
</div>

<Footer />
Expand Down
94 changes: 0 additions & 94 deletions src/CSS/About.css

This file was deleted.

27 changes: 0 additions & 27 deletions src/CSS/Footer.css

This file was deleted.

33 changes: 0 additions & 33 deletions src/CSS/Home.css

This file was deleted.

17 changes: 0 additions & 17 deletions src/CSS/NavBar.css

This file was deleted.

30 changes: 0 additions & 30 deletions src/CSS/Services.css

This file was deleted.

11 changes: 7 additions & 4 deletions src/components/About.jsx → src/components/About/About.jsx
Original file line number Diff line number Diff line change
@@ -1,9 +1,11 @@
import React from 'react';
import '../CSS/About.css'
import resume from '../Docs/Ronald_Kipchirchir_CV.pdf'
import avatar1 from '../images/avatar1.webp';
import resume from '../../Docs/Ronald_Kipchirchir_CV.pdf'
import avatar1 from '../../images/avatar1.webp';
import { FaLinkedin, FaTwitter, FaFacebook, FaInstagram } from "react-icons/fa";

import Education from "./Education.jsx";
import Experience from './Experience.jsx';

function About() {
return (
<div className='hero'>
Expand Down Expand Up @@ -57,7 +59,8 @@ function About() {
</div>
</div>
</div>

<Education />
<Experience />
</div>

)
Expand Down
9 changes: 9 additions & 0 deletions src/components/About/Education.jsx
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
import React from 'react';

const Education = () => {
return (
<div>Education page Coming Soon.....,,,,,</div>
)
}

export default Education;
12 changes: 12 additions & 0 deletions src/components/About/Experience.jsx
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
import React from 'react';

const Experience = () => {
return (
<div>
<h1>Experience</h1>
<p>page Coming Soon.....,,,,,</p>
</div>
)
}

export default Experience;
11 changes: 11 additions & 0 deletions src/components/Contact/Contact.jsx
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
import React from 'react';

const Contact = () => {
return (
<div>
<h1>Coming Soon........,</h1>
</div>
)
}

export default Contact;
Empty file.
27 changes: 11 additions & 16 deletions src/components/Footer.jsx
Original file line number Diff line number Diff line change
@@ -1,21 +1,16 @@
import React from 'react'
import '../CSS/Footer.css'
import { FaPhone, FaRegEnvelope, FaGithub, FaWhatsapp, } from "react-icons/fa";
import React from 'react';
import { FaGithub } from 'react-icons/fa';


function Footer () {
function Footer() {
return (
<div className="footer">
<div className="section1">
<h4>Contact me</h4>
<p><a href='https://wa.me/+254702233145' target="_blank" rel="noreferrer"><FaWhatsapp/>+254702233145</a></p>
<p> <a href="tel:+254111310907" target="_blank" rel="noreferrer"><em class="lnr lnr-phone-handset"></em><FaPhone />+254111310907 </a></p>
<p><FaRegEnvelope /><a href="https://mail.google.com/mail/u/0/?fs=1&tf=cm&source=mailto&to=ronaldcheruiyot342@gmail.com" target="_blank" rel="noreferrer">[email protected]</a> &reg;</p>
<p><FaGithub/>All rights reserved &trade; inc.</p>
<p>CopyRight By Ronald Kipchirchir&#169;</p>
</div>
<div className="footer bg-gray-300 flex flex-col md:flex-row items-center justify-between p-4">
<div className="left-section flex gap-4 items-center text-center mb-4 md:mb-0">
<FaGithub className="text-2xl" />
<p className="text-sm">CopyRight By Ronald Kipchirchir&copy;</p>
</div>
)
<p className="text-sm italic">Last Updated: Feb. 24, 2024</p>
</div>
);
}

export default Footer;
export default Footer;
33 changes: 0 additions & 33 deletions src/components/Home.jsx

This file was deleted.

Loading

0 comments on commit 1f43d5c

Please sign in to comment.