Skip to content

Commit

Permalink
updated photos and fixed footer spacing for small devices
Browse files Browse the repository at this point in the history
  • Loading branch information
bpyle02 committed Jun 1, 2024
1 parent 7fd5a1c commit 2f33fad
Show file tree
Hide file tree
Showing 7 changed files with 5 additions and 5 deletions.
Binary file modified app/favicon.ico
Binary file not shown.
4 changes: 2 additions & 2 deletions components/Card.tsx
Original file line number Diff line number Diff line change
@@ -1,15 +1,15 @@
import Image from "next/image";
import Link from "next/link";
import { FaEnvelope, FaGithub, FaLinkedin } from "react-icons/fa"
import logo from '../public/static/memoji.png'
import logo from '../public/static/profile1.png'

function Card()
{
return (
<div className = "w-full h-screen flex md:flex-row flex-col items-center justify-center">
<div className = "">
<Link href="/">
<Image className="w-48" src={logo} alt="profile photo" width={1000} height={1000} />
<Image className="w-48 rounded-md aspect-[3/4] object-cover mr-8" src={logo} alt="profile photo" width={1000} height={1000} />
</Link>
</div>
<div className = "md:border-l-2 px-6">
Expand Down
2 changes: 1 addition & 1 deletion components/Footer.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ import { FaEnvelope, FaGithub, FaLinkedin } from "react-icons/fa"
function Footer()
{
return (
<div className = "border-t-3/2 mt-72 mb-10 py-5">
<div className = "border-t-3/2 mt-72 mb-10 px-5 text-center">
<div className = "flex justify-center mt-4">
<a className = "text-xl m-1 p-1 sm:m-2 sm:p-2 hover:text-[#2570d1] transition-colors duration-300" href = "https://www.github.com/bpyle02">
<FaGithub />
Expand Down
2 changes: 1 addition & 1 deletion components/Header.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

import Image from "next/image";
import Link from "next/link";
import logo from '../public/static/memoji.png'
import logo from '../public/static/profile.png'
import { useState } from "react";
import { MenuOutline } from 'react-ionicons'

Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "blog",
"version": "1.11.6",
"version": "1.11.7",
"private": true,
"scripts": {
"dev": "next dev",
Expand Down
Binary file added public/static/profile.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 added public/static/profile1.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.

0 comments on commit 2f33fad

Please sign in to comment.