Fixed warnings and replaced meta image (fixed)
This commit is contained in:
@@ -1,3 +1,5 @@
|
|||||||
|
@use '../../styles/variables.scss' as *;
|
||||||
|
|
||||||
.about-us-section {
|
.about-us-section {
|
||||||
background-color: $text-light;
|
background-color: $text-light;
|
||||||
display: grid;
|
display: grid;
|
||||||
|
|||||||
@@ -1,3 +1,5 @@
|
|||||||
|
@use '../../styles/variables.scss' as *;
|
||||||
|
|
||||||
.contact-section {
|
.contact-section {
|
||||||
display: grid;
|
display: grid;
|
||||||
grid-template-columns: repeat(1, 1fr);
|
grid-template-columns: repeat(1, 1fr);
|
||||||
|
|||||||
@@ -1,3 +1,5 @@
|
|||||||
|
@use '../../styles/variables.scss' as *;
|
||||||
|
|
||||||
.contact-details {
|
.contact-details {
|
||||||
ul {
|
ul {
|
||||||
display: grid;
|
display: grid;
|
||||||
|
|||||||
@@ -1,3 +1,5 @@
|
|||||||
|
@use '../../styles/variables.scss' as *;
|
||||||
|
|
||||||
.family-section {
|
.family-section {
|
||||||
padding-block: 8rem;
|
padding-block: 8rem;
|
||||||
padding-inline: 2.81rem;
|
padding-inline: 2.81rem;
|
||||||
|
|||||||
@@ -1,3 +1,5 @@
|
|||||||
|
@use '../../styles/variables.scss' as *;
|
||||||
|
|
||||||
footer {
|
footer {
|
||||||
background-color: $dark;
|
background-color: $dark;
|
||||||
color: $text-light;
|
color: $text-light;
|
||||||
|
|||||||
@@ -3,10 +3,6 @@ import { ChevronUpIcon, CloseIcon, ListIcon } from '../Icons/Icons';
|
|||||||
import HeaderNav from './HeaderNav/HeaderNav';
|
import HeaderNav from './HeaderNav/HeaderNav';
|
||||||
import IecepLogo from '../IecepLogo/IecepLogo';
|
import IecepLogo from '../IecepLogo/IecepLogo';
|
||||||
|
|
||||||
type Props = {
|
|
||||||
path: string;
|
|
||||||
};
|
|
||||||
|
|
||||||
const Header = () => {
|
const Header = () => {
|
||||||
const [dropdownOpen, setDropdownOpen] = useState(false);
|
const [dropdownOpen, setDropdownOpen] = useState(false);
|
||||||
|
|
||||||
|
|||||||
@@ -1,3 +1,5 @@
|
|||||||
|
@use '../../styles/variables.scss' as *;
|
||||||
|
|
||||||
header.header {
|
header.header {
|
||||||
background-color: $primary;
|
background-color: $primary;
|
||||||
position: fixed;
|
position: fixed;
|
||||||
|
|||||||
@@ -1,3 +1,5 @@
|
|||||||
|
@use '../../styles/variables.scss' as *;
|
||||||
|
|
||||||
.projects-and-campaigns-section {
|
.projects-and-campaigns-section {
|
||||||
padding-block: 8.75rem;
|
padding-block: 8.75rem;
|
||||||
background-color: $background-accent;
|
background-color: $background-accent;
|
||||||
|
|||||||
@@ -1,3 +1,5 @@
|
|||||||
|
@use '../../styles/variables.scss' as *;
|
||||||
|
|
||||||
$margin-top: 1.5rem;
|
$margin-top: 1.5rem;
|
||||||
|
|
||||||
.landing-slider-section {
|
.landing-slider-section {
|
||||||
|
|||||||
@@ -13,7 +13,6 @@ const {
|
|||||||
title,
|
title,
|
||||||
description = 'Institute of Electronics Engineers of the Philippines - University of the Philippines Diliman Student Chapter',
|
description = 'Institute of Electronics Engineers of the Philippines - University of the Philippines Diliman Student Chapter',
|
||||||
} = Astro.props;
|
} = Astro.props;
|
||||||
const path = Astro.url.pathname;
|
|
||||||
---
|
---
|
||||||
|
|
||||||
<!doctype html>
|
<!doctype html>
|
||||||
@@ -61,7 +60,7 @@ const path = Astro.url.pathname;
|
|||||||
<ClientRouter />
|
<ClientRouter />
|
||||||
</head>
|
</head>
|
||||||
<body>
|
<body>
|
||||||
<Header path={path} client:load />
|
<Header client:load />
|
||||||
<main>
|
<main>
|
||||||
<slot />
|
<slot />
|
||||||
</main>
|
</main>
|
||||||
|
|||||||
+11
-16
@@ -1,5 +1,3 @@
|
|||||||
@import url('https://fonts.googleapis.com/css2?family=Lato:ital,wght@0,100;0,300;0,400;0,700;0,900;1,100;1,300;1,400;1,700;1,900&display=swap');
|
|
||||||
|
|
||||||
@use 'swiper/scss';
|
@use 'swiper/scss';
|
||||||
@use 'swiper/scss/navigation';
|
@use 'swiper/scss/navigation';
|
||||||
@use 'swiper/scss/pagination';
|
@use 'swiper/scss/pagination';
|
||||||
@@ -8,18 +6,15 @@
|
|||||||
|
|
||||||
@use '../layouts/layout.scss' as *;
|
@use '../layouts/layout.scss' as *;
|
||||||
|
|
||||||
@import '../components/Footer/footer.scss';
|
@use '../components/Footer/footer.scss' as *;
|
||||||
@import '../components/Header/header.scss';
|
@use '../components/Header/header.scss' as *;
|
||||||
|
@use '../components/AboutUs/about-us.scss' as *;
|
||||||
|
@use '../components/Family/family.scss' as *;
|
||||||
|
@use '../components/ProjectsAndCampaigns/projects-and-campaigns.scss' as *;
|
||||||
|
@use '../components/Slider/slider.scss' as *;
|
||||||
|
@use '../components/ContactDetails/contact-details.scss' as *;
|
||||||
|
@use '../components/Contact/contact.scss' as *;
|
||||||
|
@use '../components/Shop/shop.scss' as *;
|
||||||
|
@use '../components/Registration/registration.scss' as *;
|
||||||
|
|
||||||
@import '../components/AboutUs/about-us.scss';
|
@import url('https://fonts.googleapis.com/css2?family=Lato:ital,wght@0,100;0,300;0,400;0,700;0,900;1,100;1,300;1,400;1,700;1,900&display=swap');
|
||||||
@import '../components/Family/family.scss';
|
|
||||||
@import '../components/ProjectsAndCampaigns/projects-and-campaigns.scss';
|
|
||||||
@import '../components/Slider/slider.scss';
|
|
||||||
|
|
||||||
@import '../components/ContactDetails/contact-details.scss';
|
|
||||||
|
|
||||||
@import '../components/Contact/contact.scss';
|
|
||||||
|
|
||||||
@import '../components/Shop/shop.scss';
|
|
||||||
|
|
||||||
@import '../components/Registration/registration.scss';
|
|
||||||
Reference in New Issue
Block a user