Skip to content

Commit b59b94b

Browse files
authored
Merge pull request #51 from Aadarsh805/images
made things pink and some small fixes
2 parents a319c46 + 94007ea commit b59b94b

11 files changed

Lines changed: 6791 additions & 17 deletions

File tree

app/components/Footer.tsx

Lines changed: 9 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ type FooterProps = {};
77

88
const Footer: FC<FooterProps> = () => {
99
return (
10-
<div className="flex items-center justify-between w-full p-4 px-10 bg-[#EFEFEF] rounded-lg">
10+
<div className="flex items-center justify-between w-full p-4 px-10 bg-[#EAF3FE] rounded-lg">
1111
<p className="text-lg tracking-wide uppercase text-ourBlue font-semibold cursor-pointer">
1212
FAQ
1313
</p>
@@ -27,11 +27,16 @@ const Footer: FC<FooterProps> = () => {
2727
<Link
2828
href="https://github.com/Aadarsh805/100daysofcode-tracker"
2929
target="_blank"
30+
className="w-fit hover:bg-white hover:shadow-md rounded-full group transition-all duration-300 ease-linear"
3031
>
31-
<AiFillGithub className="text-3xl text-ourBlue" />
32+
<AiFillGithub className="text-3xl text-ourBlue group-hover:p-1" />
3233
</Link>
33-
<Link href="https://twitter.com/Aadarsh805" target="_blank">
34-
<AiOutlineTwitter className="text-3xl text-ourBlue" />
34+
<Link
35+
href="https://twitter.com/Aadarsh805"
36+
target="_blank"
37+
className="w-fit hover:bg-white hover:shadow-md rounded-full group transition-all duration-300 ease-linear"
38+
>
39+
<AiOutlineTwitter className="text-3xl text-ourBlue group-hover:p-1" />
3540
</Link>
3641
</div>
3742
</div>

app/components/Logo.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
import Image from "next/image";
22
import Link from "next/link";
3-
import logo from "public/assets/logo.png";
3+
import logo from "public/assets/logo2.png";
44
import type { FC } from "react";
55

66
type LogoProps = {};

app/components/StarUs.tsx

Lines changed: 8 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,8 @@
11
import Link from "next/link";
22
import type { FC } from "react";
33
import { AiFillGithub } from "react-icons/ai";
4+
import mdiGithub from "public/assets/mdi_github.png";
5+
import Image from "next/image";
46

57
type StarUsProps = {};
68

@@ -9,11 +11,13 @@ const StarUs: FC<StarUsProps> = () => {
911
<Link
1012
href="https://github.com/Aadarsh805/100daysofcode-tracker"
1113
target="_blank"
12-
className="flex items-center gap-2 border border-ourBlue py-[.35rem] px-2 rounded"
14+
className="flex items-center gap-1 border-[2px] border-ourBlack py-2 px-3 rounded-md"
1315
>
14-
<AiFillGithub className="text-2xl text-ourBlue" />
15-
<span className="w-[1px] h-4 bg-ourBlue opacity-60"></span>
16-
<p className="font-semibold text-ourBlue">Star Us</p>
16+
<div className="w-fit bg-white shadow-md rounded-full">
17+
<AiFillGithub className="text-2xl text-ourBlack p-[3px]" />
18+
</div>
19+
<span className="w-[1px] h-4 bg-ourBlack opacity-70"></span>
20+
<p className="font-semibold text-ourBlack">Star Us</p>
1721
</Link>
1822
);
1923
};

app/globals.css

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@
1414
top: -.25rem;
1515
width: 20rem;
1616
height: 20rem;
17-
background-image: url("../public/assets/github.svg");
17+
background-image: url("../public/assets/github-pink.svg");
1818
background-repeat: no-repeat;
1919
z-index: 10;
2020
}

app/page.tsx

Lines changed: 3 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,10 @@
11
"use client";
22

33
import Image from "next/image";
4-
import Page from "./dashboard/page";
5-
import Search from "./search/page";
6-
import graphImage from "public/assets/graph-snake2.svg";
4+
import graphImage from "public/assets/graph-snake3.svg";
75
import useTweetStore from "./store/tweetStore";
86
import { FormEvent } from "react";
97
import { useRouter } from "next/navigation";
10-
import { Button } from "@mui/material";
11-
import Loading from "./components/Loading";
128
import Navbar from "./components/Navbar";
139
import Form from "./Form";
1410
import Footer from "./components/Footer";
@@ -68,13 +64,13 @@ export default function Home() {
6864
};
6965

7066
return (
71-
<div className="flex flex-col items-center px-16 pb-8 h-screen gap-2 bg-hero bg-no-repeat w-full bg-cover">
67+
<div className="flex flex-col items-center px-16 pb-8 h-screen gap-2 bg-hero2 bg-no-repeat w-full bg-cover">
7268
<Navbar />
7369
<div className="flex-1 flex flex-col justify-center items-center w-full md:mt-24">
7470
<div className="flex flex-col items-center w-full justify-center gap-8 ">
7571
<div className="flex flex-col items-center justify-center text-center gap-3 ">
7672
<h3 className="icon-group relative uppercase tracking-[.2em] font-semibold text-ourBlack">
77-
<span className="text-ourBlue">100</span> days of coding,{" "}
73+
<span className="text-[#F43984]">100</span> days of coding,{" "}
7874
<span className="text-ourBlue">0</span> days of sleep
7975
</h3>
8076
<h1 className="text-5xl md:text-5xl text-ourBlack font-semibold capitalize">

public/assets/bg4.png

212 KB
Loading

public/assets/github-pink.svg

Lines changed: 39 additions & 0 deletions
Loading

0 commit comments

Comments
 (0)