@@ -72,84 +72,85 @@ const Footer = React.forwardRef<HTMLElement, FooterProps>(
7272 >
7373 < ContentWrapper >
7474 < div className = "mx-auto my-15 flex w-full max-w-[1360px] flex-col items-center justify-between" >
75- < div className = "text-primary-foreground flex flex-col items-center justify-between" >
76- < div className = "z-10 flex flex-col items-center" >
77- < div className = "flex flex-col items-center gap-3" >
78- < img
79- src = "/live-debugger/assets/logo-swm.svg"
80- alt = "Software Mansion"
81- className = "h-7 w-auto md:h-8 lg:h-9"
82- />
83- < h2 className = "mb-3 text-center text-[24px] font-bold sm:text-[28px] lg:text-[36px]" >
84- We are Software Mansion
85- </ h2 >
86- </ div >
87-
88- < h2 className = "w-full text-center text-xs font-thin md:w-1/2" >
89- You might know us from Elixir Stream Week, Global Elixir
90- Meetups, or from projects like Popcorn and Membrane. But
91- that’s not all we do.
92- < br />
93- < br />
94- We help teams build exceptional software - from developer
95- tools to production-ready applications. Let’s talk about how
96- we can support your next project.
97- </ h2 >
75+ < div className = "text-primary-foreground flex flex-col items-center justify-between gap-3 md:gap-8" >
76+ < div className = "z-10 flex flex-col items-center gap-2 md:gap-6" >
77+ < div className = "flex flex-col items-center gap-6" >
78+ < div className = "flex flex-col items-center" >
79+ < div className = "flex flex-col items-center gap-3" >
80+ < img
81+ src = "/live-debugger/assets/logo-swm.svg"
82+ alt = "Software Mansion"
83+ className = "h-7 w-auto md:h-8 lg:h-9"
84+ />
85+ < h2 className = "mb-3 text-center text-[24px] font-bold sm:text-[28px] lg:text-[36px]" >
86+ We are Software Mansion
87+ </ h2 >
88+ </ div >
9889
99- < div className = "mt-5 flex flex-row gap-5" >
90+ < h2 className = "w-full text-center text-xs font-thin md:w-3/5" >
91+ You might know us from Elixir Stream Week, Global Elixir
92+ Meetups, or from projects like Popcorn and Membrane. But
93+ that’s not all we do.
94+ < br />
95+ < br />
96+ We help teams build exceptional software - from developer
97+ tools to production-ready applications. Let’s talk about
98+ how we can support your next project.
99+ </ h2 >
100+ </ div >
100101 < a
101102 href = "https://swmansion.com/"
102103 target = "_blank"
103104 rel = "noopener"
104105 >
105- < Button variant = "secondary" size = "sm " >
106- < p className = "text-medium text-sm" > Learn more</ p >
106+ < Button variant = "secondary" size = "footer " >
107+ < p className = "text-medium px-3 text-sm" > Learn more</ p >
107108 </ Button >
108109 </ a >
109110 </ div >
110- </ div >
111111
112- < div className = "my-8 flex gap-x-10 gap-y-0 max-md:flex-col" >
113- { logos . map ( ( logo ) => (
114- < a
115- key = { logo . name }
116- href = { logo . href }
117- target = "_blank"
118- rel = "noopener"
119- className = "flex h-12 w-auto transform items-center justify-center rounded-full transition-all duration-300 ease-in-out hover:scale-105 hover:opacity-60 md:h-15"
120- >
121- < img
122- src = { logo . imageUrl }
123- alt = { logo . name }
124- className = "h-6 w-auto"
125- />
126- </ a >
127- ) ) }
112+ < div className = "my-8 flex gap-x-10 gap-y-0 max-md:flex-col" >
113+ { logos . map ( ( logo ) => (
114+ < a
115+ key = { logo . name }
116+ href = { logo . href }
117+ target = "_blank"
118+ rel = "noopener"
119+ className = "flex h-12 w-auto transform items-center justify-center rounded-full transition-all duration-300 ease-in-out hover:scale-105 hover:opacity-60 md:h-15"
120+ >
121+ < img
122+ src = { logo . imageUrl }
123+ alt = { logo . name }
124+ className = "h-6 w-auto md:h-9"
125+ />
126+ </ a >
127+ ) ) }
128+ </ div >
128129 </ div >
129130
130- < div className = "flex flex-col items-center gap-3 " >
131+ < div className = "flex flex-col items-center gap-4 md:gap-6 " >
131132 < p className = "text-2xs font-thin" > Check our socials</ p >
132133
133- < div className = "flex items-center" >
134+ < div className = "flex items-center gap-1 " >
134135 { socials . map ( ( { icon, href } ) => (
135136 < a
136137 key = { href }
137138 href = { href }
138139 target = "_blank"
139140 rel = "noopener noreferrer"
140- className = "flex h-6 w-6 transform items-center justify-center rounded-full transition-all duration-300 ease-in-out hover:scale-120 hover:opacity-60"
141+ className = "flex h-6 w-6 transform items-center justify-center rounded-full transition-all duration-300 ease-in-out hover:scale-120 hover:opacity-60 md:h-9 md:w-9 "
141142 >
142143 < img
143144 src = { `/live-debugger/assets/${ icon } .svg` }
144- className = "h-3 w-3"
145+ className = "h-3 w-3 md:h-6 md:w-6 "
145146 alt = { `${ icon } icon` }
146147 width = "16"
147148 height = "16"
148149 />
149150 </ a >
150151 ) ) }
151152 </ div >
152- < p className = "text-2xs font-thin" >
153+ < p className = "text-2xs mt-3 font-thin" >
153154 © Software Mansion 2025.
154155 </ p >
155156 </ div >
0 commit comments