diff --git a/apps/ssr/client/components/common/PoweredByFooter.tsx b/apps/ssr/client/components/common/PoweredByFooter.tsx new file mode 100644 index 000000000..0fa0a5986 --- /dev/null +++ b/apps/ssr/client/components/common/PoweredByFooter.tsx @@ -0,0 +1,63 @@ +import { SocialMediaLinks } from "@follow/constants" +import { cn } from "@follow/utils/utils" + +export const PoweredByFooter: Component = ({ className }) => ( + +) diff --git a/apps/ssr/client/components/layout/header/index.tsx b/apps/ssr/client/components/layout/header/index.tsx index b2a1a87a5..f7c4857bd 100644 --- a/apps/ssr/client/components/layout/header/index.tsx +++ b/apps/ssr/client/components/layout/header/index.tsx @@ -1,6 +1,5 @@ import { Folo } from "@follow/components/icons/folo.js" import { Logo } from "@follow/components/icons/logo.jsx" -import { SocialMediaLinks } from "@follow/constants" import { cn } from "@follow/utils/utils" import type { MotionValue } from "motion/react" import { m, useMotionValueEvent, useScroll } from "motion/react" @@ -42,7 +41,7 @@ const HeaderWrapper: Component = (props) => { className={cn( "rounded-full border border-transparent px-6 transition-all duration-300 ease-out", "relative flex items-center", - isCompact ? "py-2" : "py-3", + isCompact ? "py-2 pl-5 pr-2" : "py-3", isHeaderElevated && [ "border-border/50 bg-background/80 shadow-sm backdrop-blur-xl", "supports-[backdrop-filter]:bg-background/60", @@ -90,41 +89,39 @@ export const Header = () => { - {/* Enhanced Social Links Section */} -