mirror of
https://github.com/opentofu/opentofu.org.git
synced 2026-01-11 19:56:26 +00:00
* feat: Redesign landing page to focus on OpenTofu's future This commit introduces a new landing page that shifts focus to OpenTofu's forward momentum and unique capabilities. The redesign: - Highlights OpenTofu's powerful features like state encryption at rest, provider iteration, and early variable evaluation - Simplifies the supporters list to improve readability - Removes the manifesto to streamline the user experience - Provides clearer, more concise examples of OpenTofu's capabilities - Makes it easier for new users to understand OpenTofu's value proposition The new design emphasizes OpenTofu's technical strengths while maintaining a clean, professional appearance that aligns with the project's maturity. Signed-off-by: James Humphries <james@james-humphries.co.uk> * Various fixes and improvements Signed-off-by: James Humphries <james@james-humphries.co.uk>
20 lines
517 B
TypeScript
20 lines
517 B
TypeScript
import React from "react";
|
|
|
|
export default function DefaultFileIcon() {
|
|
return (
|
|
<svg
|
|
className="w-3 h-3 mr-1.5 text-blue-400"
|
|
fill="none"
|
|
stroke="currentColor"
|
|
viewBox="0 0 24 24"
|
|
xmlns="http://www.w3.org/2000/svg"
|
|
>
|
|
<path
|
|
strokeLinecap="round"
|
|
strokeLinejoin="round"
|
|
strokeWidth="2"
|
|
d="M9 12h6m-6 4h6m2 5H7a2 2 0 01-2-2V5a2 2 0 012-2h5.586a1 1 0 01.707.293l5.414 5.414a1 1 0 01.293.707V19a2 2 0 01-2 2z"
|
|
></path>
|
|
</svg>
|
|
);
|
|
}
|