Skip to content

Commit

Permalink
Design updates for desktop.
Browse files Browse the repository at this point in the history
  • Loading branch information
Leshe4ka committed Apr 15, 2024
1 parent ad29f5e commit 310b06f
Show file tree
Hide file tree
Showing 11 changed files with 7 additions and 7 deletions.
Binary file added src/assets/img/alunex-logo.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 removed src/assets/img/alunexLogo.png
Binary file not shown.
Binary file modified src/assets/img/chat.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 modified src/assets/img/google-docs.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 modified src/assets/img/image-gallery.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 modified src/assets/img/pdf.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 modified src/assets/img/sheets.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
2 changes: 1 addition & 1 deletion src/components/Button.astro
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ const getStyles = (
md: `h-[52px] px-[24px] text-h6 rounded-[8px] ${disabled ? 'bg-btn-main-disabled-bg text-btn-main-disabled-color' : 'bg-btn-main-normal-bg text-btn-main-normal-color'}`,
},
link: {
lg: `px-[12px] text-h4 rounded-[8px] ${disabled ? 'bg-btn-link-disabled-bg text-btn-link-disabled-color' : 'bg-btn-link-normal-bg text-btn-link-normal-color'}`,
lg: `px-[12px] text-h3 rounded-[8px] ${disabled ? 'bg-btn-link-disabled-bg text-btn-link-disabled-color' : 'bg-btn-link-normal-bg text-btn-link-normal-color'}`,
md: `px-[12px] text-h6 rounded-[8px] ${disabled ? 'bg-btn-link-disabled-bg text-btn-link-disabled-color' : 'bg-btn-link-normal-bg text-btn-link-normal-color'}`,
},
};
Expand Down
2 changes: 1 addition & 1 deletion src/components/Footer.astro
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ const socialLinks = {
---

<footer
class="w-full bg-bg-secondary flex flex-col items-center justify-between px-[70px] pt-[48px] pb-[20px]"
class="w-full bg-bg-secondary flex flex-col items-center justify-between px-[70px] pt-[20px] pb-[15px]"
>
<div class="flex justify-between w-full">
<div class="flex flex-col items-start">
Expand Down
8 changes: 4 additions & 4 deletions src/components/Header.astro
Original file line number Diff line number Diff line change
Expand Up @@ -11,12 +11,12 @@ const BUTTONS_CONTENT = {
getStarted: {name: 'Get Started', href: '#'},
};
const logo = (await getImgSrc('alunexLogo')).default;
const logo = (await getImgSrc('alunex-logo')).default;
---

<header class="w-full bg-bg-secondary flex justify-between">
<img src={logo.src} alt="Alunex logo" />
<nav class="w-full flex items-center justify-between px-[80px]">
<header class="w-full bg-bg-secondary flex justify-between pl-[20px]" >
<a href="/"><img src={logo.src} alt="Alunex logo" /></a>
<nav class="w-full flex items-center justify-between pr-[80px] pl-[110px]">
<div class="flex flex-nowrap gap-x-[48px]">
<Button
text={BUTTONS_CONTENT.useCases.name}
Expand Down
2 changes: 1 addition & 1 deletion src/components/Welcome.astro
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ const chat = (await getImgSrc('chat')).default;
{title}
</h1>

<p class="text-text-main text-h3 mt-[60px] font-bold">
<p class="text-text-main text-h3 mt-[100px] font-bold">
{subTitle}
</p>

Expand Down

0 comments on commit 310b06f

Please sign in to comment.