Skip to content

Commit

Permalink
...
Browse files Browse the repository at this point in the history
  • Loading branch information
ilkhoeri committed Feb 3, 2025
1 parent 7c0a1f4 commit c22fec7
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 9 deletions.
2 changes: 1 addition & 1 deletion app/layout.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -6,9 +6,9 @@ import { ThemeProvider } from "@/ui/config/themes";
import { AppProvider } from "@/ui/config/app-context";
import { META_THEME_COLORS, SEO_VERIFICATION, siteConfig, iconsConfig, linksConfig } from "./site/config";

import "./globals.css";
import type { Metadata } from "next";

import "./globals.css";

export function metadata(): Metadata {
return {
Expand Down
9 changes: 2 additions & 7 deletions tailwind.config.ts
Original file line number Diff line number Diff line change
@@ -1,20 +1,15 @@
import { PluginAPI, type Config } from "tailwindcss/types/config";
import plugin from "tailwindcss/plugin";

// types files path
// node_modules/tailwindcss/types/index.d.ts
// node_modules/tailwindcss/types/config.d.ts

export default {
prefix: "",
darkMode: ["class"],
content: [
"./app/**/*.{js,jsx,ts,tsx,md,mdx}",
"./source/**/*.{js,jsx,ts,tsx,md,mdx}",
"./resource/**/*.{js,jsx,ts,tsx,md,mdx}",
"./ui/**/*.{js,jsx,ts,tsx,md,mdx}",
"./d/**/*.{js,jsx,ts,tsx,md,mdx}",
"./components/**/*.{js,jsx,ts,tsx,md,mdx}",
"./pages/**/*.{js,jsx,ts,tsx,md,mdx}",
"./src/**/*.{js,jsx,ts,tsx,md,mdx}"
],
theme: {
container: {
Expand Down
2 changes: 1 addition & 1 deletion ui/icons/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -129,7 +129,7 @@ export function TextDirectionIcon({ dir = "ltr", ...props }: SvgProps<{ dir?: "l

export function LogoIcon({ fill = "#549", ...props }: SvgProps) {
return (
<Svg {...{ fill, ...props }}>
<Svg currentFill="fill" {...{ fill, ...props }}>
<path d="m17.24,16.93l1.7-1.74c.14-.13.21-.31.22-.51,0-.2-.07-.39-.21-.53l-2.11-2.16,2.11-2.16c.28-.29.28-.74,0-1.03l-1.71-1.76c-.28-.26-.71-.27-1.02,0l-2.16,2.2c-1.22-.86-2.92-.85-4.12,0l-2.16-2.21c-.28-.26-.71-.27-1.01,0l-1.72,1.75c-.27.29-.27.74,0,1.03l2.12,2.16-2.13,2.16c-.27.29-.27.75,0,1.03l1.71,1.75c.28.29.75.28,1.02,0l2.15-2.2c.61.43,1.32.66,2.07.66s1.46-.23,2.06-.66l2.16,2.2c.14.14.32.22.51.22s.38-.08.52-.22Zm-2.12-6.68l1.61-1.65.7.71-1.61,1.65-.7-.71Zm.7,2.77l1.61,1.65-.7.71-1.61-1.65.7-.71Zm-1.02-1.03l-.7.71-.7-.71.7-.72.7.72Zm-4.2,0l-.7.71-.7-.71.7-.71.7.71Zm1.57-.82c-.11.11-.26.1-.35,0l-.84-.86c.62-.34,1.41-.34,2.04,0l-.85.87Zm-.35,1.62c.08-.09.26-.1.35,0l.85.87c-.65.35-1.44.34-2.05,0l.85-.86Zm-3.63.23l.7.71-1.61,1.64-.7-.71,1.62-1.64Zm0-2.07l-1.62-1.65.7-.71,1.62,1.65-.7.71Z" />
<path d="m15.9,17.27l-.4-.41s-.1-.07-.17-.07c-.05,0-.12.02-.17.07l-.9.89h0s-1.79,1.81-1.79,1.81c-.26.25-.71.25-.97,0l-2.69-2.69s-.12-.07-.17-.07c-.06,0-.12.03-.17.07l-.39.4c-.11.11-.23.2-.36.25-.07.03-.13.09-.14.17s0,.16.06.21l2.76,2.76c.06.07.13.11.18.14.37.33.87.51,1.39.51s1.03-.18,1.39-.49c.06-.04.14-.09.19-.16l2.76-2.76c.06-.06.08-.13.06-.21-.02-.08-.07-.14-.14-.17-.14-.06-.26-.14-.36-.24Z" />
<path d="m8.07,6.68l.43.44s.1.07.17.07h0c.06,0,.12-.02.17-.07l2.67-2.68c.28-.27.71-.26.97,0l2.69,2.68s.1.07.17.07c.08,0,.12-.03.17-.07l.38-.39c.13-.12.25-.2.36-.24.07-.03.13-.09.15-.17s0-.16-.06-.22l-2.74-2.74c-.06-.07-.13-.12-.18-.16-.79-.65-1.98-.66-2.78-.02-.09.04-.15.11-.2.16l-2.74,2.75c-.06.06-.08.14-.06.21.02.08.07.14.14.17.1.04.2.11.31.2Z" />
Expand Down

0 comments on commit c22fec7

Please sign in to comment.