Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Built new digital girls page #2471

Merged
merged 6 commits into from
Feb 21, 2025
Merged
Show file tree
Hide file tree
Changes from all 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
Binary file added public/images/digital-girls/about-girls.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
4 changes: 4 additions & 0 deletions public/images/digital-girls/arrow.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/digital-girls/digital_girls_bg.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
43 changes: 43 additions & 0 deletions public/images/digital-girls/digital_girls_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/digital-girls/fig-1.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/images/digital-girls/fig-2.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/images/digital-girls/fig-3.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
3 changes: 3 additions & 0 deletions public/images/fi_play.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
1 change: 0 additions & 1 deletion resources/assets/sass/components/header.scss
Original file line number Diff line number Diff line change
Expand Up @@ -639,6 +639,5 @@ header .lang-menu .menu-dropdown ul li a{
header #right-menu {
justify-content: flex-end;
flex: 1;
margin-right: 18px;
}
}
4 changes: 2 additions & 2 deletions resources/views/layout/footer.blade.php
Original file line number Diff line number Diff line change
Expand Up @@ -120,9 +120,9 @@
</div>
<div
id="scroll-top-btn"
class="fixed z-[100] -bottom-2 hover:bottom-0 right-[50px] bg-yellow hover:bg-primary p-4 pb-6 rounded-t-full duration-300 cursor-pointer"
class="fixed z-[100] -bottom-2 hover:bottom-0 right-[20px] bg-yellow hover:bg-primary p-3 pb-4 md:p-4 md:pb-6 rounded-t-full duration-300 cursor-pointer"
>
<img class="icon-rotate-270" src="/images/arrow-up-icon.svg" />
<img class="icon-rotate-270 w-6 h-6 md:w-8 md:h-8" src="/images/arrow-up-icon.svg" />
</div>

<div id="footer-scroll-activity" class="fixed md:hidden bottom-0 left-0 border-t-2 border-primary flex justify-center py-4 px-[44px] w-full bg-white z-[99]">
Expand Down
434 changes: 434 additions & 0 deletions resources/views/static/girls-in-digital-week.blade.php

Large diffs are not rendered by default.

4 changes: 4 additions & 0 deletions routes/web.php
Original file line number Diff line number Diff line change
Expand Up @@ -107,6 +107,10 @@
Route::get('/dance', [StaticPageController::class, 'static'])->name('dance');
Route::get('/why-coding', [StaticPageController::class, 'static'])->name('why-coding');

Route::get('/girls-in-digital-week', [StaticPageController::class, 'static'])->name(
'girls-in-digital-week'
);

Route::get('/remote-teaching', [RemoteTeachingController::class, 'index'])->name(
'remote-teaching'
);
Expand Down
4 changes: 3 additions & 1 deletion tailwind.config.js
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,8 @@ module.exports = {
backgroundImage: {
'secondary-gradient': 'linear-gradient(36.92deg, #1C4DA1 20.32%, #0040AE 28.24%)',
'blue-gradient': 'linear-gradient(161.75deg, #1254C5 16.95%, #0040AE 31.1%)',
'count-gradient': 'linear-gradient(150.73deg, #1254C5 24.55%, #0040AE 68.54%)'
'count-gradient': 'linear-gradient(150.73deg, #1254C5 24.55%, #0040AE 68.54%)',
'orange-gradient': 'linear-gradient(36.92deg, #F95C22 20.32%, #FF885C 28.24%)',
},
colors: {
'primary': '#F95C22',
Expand All @@ -28,6 +29,7 @@ module.exports = {
'dark-blue': '#1C4DA1',
'hover-blue': '#0A42A1',
'slate': '#5C656D',
'light-blue': '#F2FBFE',
'error-200': '#E30519',
'dark-blue-50': '#E8EDF6',
'dark-blue-200': '#A4B8D9',
Expand Down