import React from "react"; import clsx from "clsx"; type Props = { icon: React.ReactNode; children: React.ReactNode; alignmentClass?: string; }; export const LandingTile = ({ icon, children, alignmentClass = "landing-lg:flex-col", }: Props) => { return (