Skip to content

Commit 1cb49d6

Browse files
author
Lukas Gundermann
committed
refactor: Update "Additional Resources" section UI and content
This commit refactors the "Additional Resources" section on the home screen. The background color has been updated to `Colors.white` in light mode and `Colors.gray[800]` in dark mode for better visual consistency. The heading has been changed from "Technologie Stack" to "Weitere Ressourcen" (Additional Resources), and the subheading has been updated to "Dokumentation und Hilfestellung für Entwickler" (Documentation and help for developers) to more accurately reflect the section's purpose.
1 parent 67eb30d commit 1cb49d6

1 file changed

Lines changed: 3 additions & 3 deletions

File tree

lib/screens/home/widgets/additional_resources.dart

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -38,18 +38,18 @@ class AdditionalResources extends StatelessWidget {
3838
final isDarkMode = context.watch<ThemeCubit>().state.isDarkMode;
3939
return Container(
4040
width: double.infinity,
41-
color: isDarkMode ? Colors.gray[950] : Colors.gray[50],
41+
color: isDarkMode ? Colors.gray[800] : Colors.white,
4242
child: Column(
4343
children: [
44-
Text('Technologie Stack').bold.responsive(
44+
Text('Weitere Ressourcen').bold.responsive(
4545
context,
4646
mobile: (t) => t.x3Large,
4747
tablet: (t) => t.x3Large,
4848
desktop: (t) => t.x4Large,
4949
),
5050
Gap(16),
5151
Text(
52-
'Moderne und bewährte Technologien für beste Performance',
52+
'Dokumentation und Hilfestellung für Entwickler',
5353
).setColors(
5454
lightColor: Colors.gray[600],
5555
darkColor: Colors.gray[400],

0 commit comments

Comments
 (0)