Skip to content

Commit

Permalink
Merge pull request #4 from Play2HelpWorld-com/Create-HomePage
Browse files Browse the repository at this point in the history
Change logo and change the background color
  • Loading branch information
ibugithub authored Aug 31, 2023
2 parents 0bc468a + 3c71dc0 commit 00591d5
Show file tree
Hide file tree
Showing 9 changed files with 155 additions and 13 deletions.
4 changes: 4 additions & 0 deletions app/layout.css
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
.bg-dark-blut-dark {
background: linear-gradient(90deg, #000102 0%, #01102c 100%);
}

3 changes: 2 additions & 1 deletion app/layout.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,7 @@ import Header from "@/components/Header";
import "../styles/index.css";
import "node_modules/react-modal-video/css/modal-video.css";
import ScrollToTop from "@/components/ScrollToTop";
import './layout.css'


export default function RootLayout({
Expand All @@ -15,7 +16,7 @@ export default function RootLayout({
return (
<html lang="en">
<head />
<body className="dark:bg-black">
<body className="bg-dark-blut-dark">
<Providers>
<Header />
{children}
Expand Down
11 changes: 5 additions & 6 deletions components/Footer/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -14,23 +14,22 @@ const Footer = () => {
<div className="mb-12 max-w-[360px] lg:mb-16">
<Link href="/" className="mb-8 inline-block">
<Image
src="/images/logo/logo.jpg"
src="/images/logo/logo.svg"
alt="logo"
className="w-1/4 dark:hidden"
className="w-2/6 dark:hidden"
width={140}
height={30}
/>
<Image
src="/images/logo/logo.jpg"
src="/images/logo/logo.svg"
alt="logo"
className="hidden w-1/4 dark:block"
className="hidden w-2/6 dark:block"
width={140}
height={30}
/>
</Link>
<p className="mb-9 text-base font-medium leading-relaxed text-body-color">
Lorem ipsum dolor sit amet, consectetur adipiscing elit.
Integer lobortis.
With AiProf, we're on a mission to transform education through AI-driven learning.
</p>
<div className="flex items-center">
<a
Expand Down
12 changes: 6 additions & 6 deletions components/Header/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -54,18 +54,18 @@ const Header = () => {
} `}
>
<Image
src="/images/logo/logo.jpg"
src="/images/logo/logo.svg"
alt="logo"
width={140}
height={30}
className="w-2/5 dark:hidden"
className="w-1/6 dark:hidden"
/>
<Image
src="/images/logo/logo.jpg"
src="/images/logo/logo.svg"
alt="logo"
width={140}
height={30}
className="hidden w-2/5 dark:block"
height={20}
className="hidden w-2/3 dark:block"
/>
</Link>
</div>
Expand Down Expand Up @@ -163,7 +163,7 @@ const Header = () => {
Sign Up
</Link>
<div>
<ThemeToggler />
{/* <ThemeToggler /> */}
</div>
</div>
</div>
Expand Down
Binary file removed public/images/favicon.ico
Binary file not shown.
Binary file removed public/images/favicon.png
Binary file not shown.
Binary file removed public/images/logo/logo.jpg
Binary file not shown.
138 changes: 138 additions & 0 deletions public/images/logo/logo.svg
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/images/logo/logod.jpg
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 00591d5

Please sign in to comment.