Skip to content

Commit

Permalink
Merge pull request #2 from benjanknoetze/minor-updates
Browse files Browse the repository at this point in the history
Favicon and copy changes
  • Loading branch information
benjanknoetze authored Aug 13, 2024
2 parents 477b2e8 + 07f0939 commit f52a0bb
Show file tree
Hide file tree
Showing 9 changed files with 15 additions and 10 deletions.
Binary file modified .DS_Store
Binary file not shown.
2 changes: 1 addition & 1 deletion components/Development/DevelopmentHero.js
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ const DevelopmentHero = () => (
Knoetze
</h1>
<span className='headingSub'>
Development
Development
</span>
</Col>
</Row>
Expand Down
3 changes: 1 addition & 2 deletions components/Header.js
Original file line number Diff line number Diff line change
Expand Up @@ -52,8 +52,7 @@ const Header = () => (
}
/* Nav dropdown menu */
.dropdown-menu {
color: #fff;
background-color: #d3d3d3c9;
background-color: #d3d3d3ed;
}
.dropdown-item:hover {
background-color: var( --clr-lightblue);
Expand Down
8 changes: 3 additions & 5 deletions components/People/PeopleBody.js
Original file line number Diff line number Diff line change
Expand Up @@ -11,16 +11,14 @@ const PeopleBody = () => (
<p className="cardText mt-1 mb-2">
Benjan's first steps toward a career started at the University of
Pretoria, where he completed a Master's degree in Theology in 2011.<br></br>
There he specialised in counselling.
There he specialised in narrative therapy or counselling.
During his chapter in the church, he worked with various groups of people
from all walks of life and different belief systems. <br></br>One of the main skills
he learnt here was how to get people who might be poles apart on the same
page and enthusiastic towards a specific goal.</p>
page and enthusiastic towards a specific goal.</p>
<p className="cardText mt-1 mb-2">
</p>
<p className="cardText mt-1 mb-2">
However, due to the church's attitude toward gay clergy and marriage,
Benjan decided that his gifts would be a better fit elsewhere.<br></br>
He is, first and foremost, a people person and sees the skills gained during this chapter as indispensable.
</p>
</Card>
Expand All @@ -30,7 +28,7 @@ const PeopleBody = () => (
<h5 className="cardHeading">Blog</h5>
<p className="cardText mt-1 mb-2">
While he was a minister, Benjan sporadically blogged about
theology and philosophy. <br></br>
philosophy. <br></br>
Some of his thoughts can be viewed here:
</p>
<Button href="https://rubiconrubric.wordpress.com" className="cardButton mt-3">
Expand Down
12 changes: 10 additions & 2 deletions pages/_app.js
Original file line number Diff line number Diff line change
@@ -1,7 +1,15 @@
import '../styles/globals.css'
import Head from 'next/head';
import '../styles/globals.css';

function MyApp({ Component, pageProps }) {
return <Component {...pageProps} />
return (
<>
<Head>
<link rel="icon" href="/favicon.ico" sizes="any" />
</Head>
<Component {...pageProps} />
</>
);
}

export default MyApp
Binary file added public/favicon.ico
Binary file not shown.
Binary file removed public/minesweeper.png
Binary file not shown.
Binary file modified public/pf.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file removed public/repear.jpg
Binary file not shown.

0 comments on commit f52a0bb

Please sign in to comment.