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

fix(footer): Fixed text in team & footer sections. #17

Merged
merged 3 commits into from
Oct 24, 2024
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
4 changes: 2 additions & 2 deletions app/components/icons.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -399,7 +399,7 @@ export const Icons = {
src='/logo-icons/2.png'
alt='logo'
className={twMerge(
"h-[2rem] w-[2rem] inline-block object-contain",
"h-[1.5rem] w-[1.5rem] md:h-[2rem] md:w-[2rem] inline-block object-contain",
props.className
)}
/>
Expand All @@ -409,7 +409,7 @@ export const Icons = {
src='/icons/coffee.png'
alt='logo'
className={twMerge(
"h-[2rem] w-[2rem] inline-block object-contain",
"h-[1.5rem] w-[1.5rem] md:h-[2rem] md:w-[2rem] inline-block object-contain",
props.className
)}
/>
Expand Down
4 changes: 2 additions & 2 deletions app/components/news-ticker.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ export const NewsTicker = ({ newsTop, newsBottom }: NewsTickerProps) => {
key={`${index}_${x.title}}`}
className='pr-10 flex items-center gap-5'
>
{x.icon} <span className='text-xl'>{x.title}</span>
{x.icon} <span className='text-lg md:text-xl'>{x.title}</span>
</div>
))}
</Marquee>
Expand All @@ -29,7 +29,7 @@ export const NewsTicker = ({ newsTop, newsBottom }: NewsTickerProps) => {
key={`${index}_${x.title}}`}
className='pr-10 flex items-center gap-5'
>
{x.icon} <span className='text-xl'>{x.title}</span>
{x.icon} <span className='text-lg md:text-xl'>{x.title}</span>
</div>
))}
</Marquee>
Expand Down
2 changes: 1 addition & 1 deletion app/modules/team.section.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -70,7 +70,7 @@ const supporters: People[] = [

export const TeamSection = () => {
return (
<div id='team' className='min-h-screen pt-24'>
<div id='team' className='w-[90%] mx-auto min-h-screen pt-24'>
<p className='text-center text-xl pb-12'>Команда</p>
<div className='grid md:grid-cols-2 lg:grid-cols-3 w-[90%] mx-auto gap-5'>
{team.map((person, index) => (
Expand Down
2 changes: 1 addition & 1 deletion app/pages/home.page.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ export const HomePage = () => {
return (
<>
<Header />
<div className='space-y-20 md:space-y-10'>
<div className='space-y-10'>
<HeroSection />
<ProjectsSection />
<AcheivementsSection />
Expand Down
2 changes: 1 addition & 1 deletion tailwind.config.js
Original file line number Diff line number Diff line change
Expand Up @@ -66,5 +66,5 @@ export default {
},
},
},
plugins: [require('tailwindcss-animate')],
plugins: [],
};
Loading