Skip to content
Open
Show file tree
Hide file tree
Changes from 10 commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
17 changes: 0 additions & 17 deletions app/layout.js

This file was deleted.

16 changes: 16 additions & 0 deletions app/layout.jsx
Original file line number Diff line number Diff line change
@@ -0,0 +1,16 @@
"use client";
import "./globals.css";
import { Inter } from "next/font/google";
import { Provider } from "react-redux";
import store from "./store/configureStore";
const inter = Inter({ subsets: ["latin"] });

export default function RootLayout({ children }) {
return (
<html lang="en">
<body className={inter.className}>
<Provider store={store}>{children}</Provider>
</body>
</html>
);
}
95 changes: 0 additions & 95 deletions app/page.js

This file was deleted.

59 changes: 57 additions & 2 deletions app/page.module.css
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,9 @@
border-radius: var(--border-radius);
background: rgba(var(--card-rgb), 0);
border: 1px solid rgba(var(--card-border-rgb), 0);
transition: background 200ms, border 200ms;
transition:
background 200ms,
border 200ms;
}

.card span {
Expand Down Expand Up @@ -97,7 +99,7 @@

.center::before,
.center::after {
content: '';
content: "";
left: 50%;
position: absolute;
filter: blur(45px);
Expand Down Expand Up @@ -227,3 +229,56 @@
transform: rotate(0deg);
}
}

.cityName {
flex: 0 0 150px;
margin: 0;
white-space: nowrap;
}

.columnNameContainer {
display: flex;
width: 100%;
gap: 20px;
align-items: center;
border-bottom: 2px solid #ccc;
padding-bottom: 10px;
padding-top: 10px;
border-top: 2px solid #ccc;
}

.weatherContainer {
display: flex;
width: 100%;
gap: 20px;
align-items: center;
}

.card {
flex: 1;
text-align: center;
}

.buttonClass {
color: blue;
margin-left: 20px;
font-weight: bold;
padding: 5px;
border-radius: 18px;
}

.geoLocate {
color: rgb(139, 180, 106);
margin-bottom: 20px;
padding: 10px;
border-radius: 18px;
}

.map {
width: 100%;
max-width: 900px;
height: 400px;
margin-top: 20px;
border: 0;
border-radius: 10px;
}
Loading