refactor: optimize logomark.svg file size and structure

- Minified SVG markup by removing unnecessary whitespace and line breaks
- Consolidated SVG definition into single line for improved loading performance
- Maintained all visual attributes and rendering properties
- No changes to actual logo appearance or dimensions
This commit is contained in:
2025-11-19 16:49:53 +01:00
parent 6d96ff9ea8
commit c0b84fd578
4 changed files with 6 additions and 6 deletions

View File

@@ -24,7 +24,7 @@ const deterministicCards = [
title: "No central servers.",
description:
"Your devices form a distributed network, eliminating reliance on centralized data centers.",
animation: <NoCentral className="lg:-mt-12" />, // ✅ NEW
animation: <NoCentral />, // ✅ NEW
colSpan: "lg:col-span-3",
rowSpan: "lg:row-span-1",
rounded: "lg:rounded-tr-4xl max-lg:rounded-t-4xl",
@@ -35,7 +35,7 @@ const deterministicCards = [
title: "No data extraction.",
description:
"You own your data. Run services and AI models on your own devices, ensuring privacy and control.",
animation: <NoExtraction className="lg:-mt-12" />, // ✅ NEW
animation: <NoExtraction />, // ✅ NEW
colSpan: "lg:col-span-2",
rowSpan: "lg:row-span-1",
rounded: "lg:rounded-bl-4xl max-lg:rounded-b-4xl",