{
	"$schema": "https://shadcn-svelte.com/schema/registry-item.json",
	"name": "footer-three",
	"type": "registry:block",
	"description": "Three-column footer with contact info",
	"devDependencies": [
		"@lucide/svelte"
	],
	"registryDependencies": [
		"button",
		"input",
		"label"
	],
	"files": [
		{
			"content": "<script>\n\timport Button from \"$COMPONENTS$/ui/button/button.svelte\";\n\timport Input from \"$COMPONENTS$/ui/input/input.svelte\";\n\timport Label from \"$COMPONENTS$/ui/label/label.svelte\";\n\n\timport { cn } from \"$UTILS$\";\n\timport ChevronsUpDown from \"@lucide/svelte/icons/chevrons-up-down\";\n\tconst links = [\n\t\t{\n\t\t\tgroup: \"Product\",\n\t\t\titems: [\n\t\t\t\t{\n\t\t\t\t\ttitle: \"Features\",\n\t\t\t\t\thref: \"#\",\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\ttitle: \"Solution\",\n\t\t\t\t\thref: \"#\",\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\ttitle: \"Customers\",\n\t\t\t\t\thref: \"#\",\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\ttitle: \"Pricing\",\n\t\t\t\t\thref: \"#\",\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\ttitle: \"Help\",\n\t\t\t\t\thref: \"#\",\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\ttitle: \"About\",\n\t\t\t\t\thref: \"#\",\n\t\t\t\t},\n\t\t\t],\n\t\t},\n\t\t{\n\t\t\tgroup: \"Solution\",\n\t\t\titems: [\n\t\t\t\t{\n\t\t\t\t\ttitle: \"Startup\",\n\t\t\t\t\thref: \"#\",\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\ttitle: \"Freelancers\",\n\t\t\t\t\thref: \"#\",\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\ttitle: \"Organizations\",\n\t\t\t\t\thref: \"#\",\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\ttitle: \"Students\",\n\t\t\t\t\thref: \"#\",\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\ttitle: \"Collaboration\",\n\t\t\t\t\thref: \"#\",\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\ttitle: \"Design\",\n\t\t\t\t\thref: \"#\",\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\ttitle: \"Management\",\n\t\t\t\t\thref: \"#\",\n\t\t\t\t},\n\t\t\t],\n\t\t},\n\t\t{\n\t\t\tgroup: \"Company\",\n\t\t\titems: [\n\t\t\t\t{\n\t\t\t\t\ttitle: \"About\",\n\t\t\t\t\thref: \"#\",\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\ttitle: \"Careers\",\n\t\t\t\t\thref: \"#\",\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\ttitle: \"Blog\",\n\t\t\t\t\thref: \"#\",\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\ttitle: \"Press\",\n\t\t\t\t\thref: \"#\",\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\ttitle: \"Contact\",\n\t\t\t\t\thref: \"#\",\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\ttitle: \"Help\",\n\t\t\t\t\thref: \"#\",\n\t\t\t\t},\n\t\t\t],\n\t\t},\n\t\t{\n\t\t\tgroup: \"Legal\",\n\t\t\titems: [\n\t\t\t\t{\n\t\t\t\t\ttitle: \"Licence\",\n\t\t\t\t\thref: \"#\",\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\ttitle: \"Privacy\",\n\t\t\t\t\thref: \"#\",\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\ttitle: \"Cookies\",\n\t\t\t\t\thref: \"#\",\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\ttitle: \"Security\",\n\t\t\t\t\thref: \"#\",\n\t\t\t\t},\n\t\t\t],\n\t\t},\n\t];\n</script>\n\n<footer class=\"border-b bg-white pt-20 dark:bg-transparent\">\n\t<div class=\"mb-8 border-b md:mb-12\">\n\t\t<div class=\"mx-auto flex max-w-5xl flex-wrap items-end justify-between gap-6 px-6 pb-6\">\n\t\t\t<a href=\"/\" aria-label=\"go home\" class=\"block size-fit\">\n\t\t\t\t<svg\n\t\t\t\t\txmlns=\"http://www.w3.org/2000/svg\"\n\t\t\t\t\twidth=\"22\"\n\t\t\t\t\theight=\"22\"\n\t\t\t\t\tviewBox=\"0 0 24 24\"\n\t\t\t\t\tfill=\"none\"\n\t\t\t\t\trole=\"img\"\n\t\t\t\t\tcolor=\"currentColor\"\n\t\t\t\t>\n\t\t\t\t\t<path\n\t\t\t\t\t\td=\"M22 18C22 19.4001 22 20.1002 21.7275 20.635C21.4878 21.1054 21.1054 21.4878 20.635 21.7275C20.1002 22 19.4001 22 18 22C16.5999 22 15.8998 22 15.365 21.7275C14.8946 21.4878 14.5122 21.1054 14.2725 20.635C14 20.1002 14 19.4001 14 18C14 16.5999 14 15.8998 14.2725 15.365C14.5122 14.8946 14.8946 14.5122 15.365 14.2725C15.8998 14 16.5999 14 18 14C19.4001 14 20.1002 14 20.635 14.2725C21.1054 14.5122 21.4878 14.8946 21.7275 15.365C22 15.8998 22 16.5999 22 18Z\"\n\t\t\t\t\t\tstroke=\"currentColor\"\n\t\t\t\t\t\tstroke-width=\"1.5\"\n\t\t\t\t\t></path>\n\t\t\t\t\t<path\n\t\t\t\t\t\td=\"M22 10C22 11.4001 22 12.1002 21.7275 12.635C21.4878 13.1054 21.1054 13.4878 20.635 13.7275C20.1002 14 19.4001 14 18 14C16.5999 14 15.8998 14 15.365 13.7275C14.8946 13.4878 14.5122 13.1054 14.2725 12.635C14 12.1002 14 11.4001 14 10C14 8.59987 14 7.8998 14.2725 7.36502C14.5122 6.89462 14.8946 6.51217 15.365 6.27248C15.8998 6 16.5999 6 18 6C19.4001 6 20.1002 6 20.635 6.27248C21.1054 6.51217 21.4878 6.89462 21.7275 7.36502C22 7.8998 22 8.59987 22 10Z\"\n\t\t\t\t\t\tstroke=\"currentColor\"\n\t\t\t\t\t\tstroke-width=\"1.5\"\n\t\t\t\t\t></path>\n\t\t\t\t\t<path\n\t\t\t\t\t\td=\"M14 18C14 19.4001 14 20.1002 13.7275 20.635C13.4878 21.1054 13.1054 21.4878 12.635 21.7275C12.1002 22 11.4001 22 10 22C8.59987 22 7.8998 22 7.36502 21.7275C6.89462 21.4878 6.51217 21.1054 6.27248 20.635C6 20.1002 6 19.4001 6 18C6 16.5999 6 15.8998 6.27248 15.365C6.51217 14.8946 6.89462 14.5122 7.36502 14.2725C7.8998 14 8.59987 14 10 14C11.4001 14 12.1002 14 12.635 14.2725C13.1054 14.5122 13.4878 14.8946 13.7275 15.365C14 15.8998 14 16.5999 14 18Z\"\n\t\t\t\t\t\tstroke=\"currentColor\"\n\t\t\t\t\t\tstroke-width=\"1.5\"\n\t\t\t\t\t></path>\n\t\t\t\t\t<path\n\t\t\t\t\t\topacity=\"0.4\"\n\t\t\t\t\t\td=\"M10 6C10 7.40013 10 8.1002 9.72752 8.63497C9.48783 9.10538 9.10538 9.48783 8.63498 9.72752C8.1002 10 7.40013 10 6 10C4.59987 10 3.8998 10 3.36502 9.72751C2.89462 9.48783 2.51217 9.10538 2.27248 8.63497C2 8.10019 2 7.40013 2 6C2 4.59987 2 3.8998 2.27248 3.36502C2.51217 2.89462 2.89462 2.51217 3.36502 2.27248C3.8998 2 4.59987 2 6 2C7.40013 2 8.1002 2 8.63498 2.27248C9.10538 2.51217 9.48783 2.89462 9.72752 3.36502C10 3.8998 10 4.59987 10 6Z\"\n\t\t\t\t\t\tstroke=\"currentColor\"\n\t\t\t\t\t\tstroke-width=\"1.5\"\n\t\t\t\t\t></path>\n\t\t\t\t</svg>\n\t\t\t</a>\n\t\t\t<div class=\"flex flex-wrap justify-center gap-6 text-sm\">\n\t\t\t\t<a\n\t\t\t\t\thref=\"/\"\n\t\t\t\t\ttarget=\"_blank\"\n\t\t\t\t\trel=\"noopener noreferrer\"\n\t\t\t\t\taria-label=\"X/Twitter\"\n\t\t\t\t\tclass=\"block text-muted-foreground hover:text-primary\"\n\t\t\t\t>\n\t\t\t\t\t<svg\n\t\t\t\t\t\tclass=\"size-6\"\n\t\t\t\t\t\txmlns=\"http://www.w3.org/2000/svg\"\n\t\t\t\t\t\twidth=\"1em\"\n\t\t\t\t\t\theight=\"1em\"\n\t\t\t\t\t\tviewBox=\"0 0 24 24\"\n\t\t\t\t\t>\n\t\t\t\t\t\t<path\n\t\t\t\t\t\t\tfill=\"currentColor\"\n\t\t\t\t\t\t\td=\"M10.488 14.651L15.25 21h7l-7.858-10.478L20.93 3h-2.65l-5.117 5.886L8.75 3h-7l7.51 10.015L2.32 21h2.65zM16.25 19L5.75 5h2l10.5 14z\"\n\t\t\t\t\t\t></path>\n\t\t\t\t\t</svg>\n\t\t\t\t</a>\n\t\t\t\t<a\n\t\t\t\t\thref=\"/\"\n\t\t\t\t\ttarget=\"_blank\"\n\t\t\t\t\trel=\"noopener noreferrer\"\n\t\t\t\t\taria-label=\"aedIn\"\n\t\t\t\t\tclass=\"block text-muted-foreground hover:text-primary\"\n\t\t\t\t>\n\t\t\t\t\t<svg\n\t\t\t\t\t\tclass=\"size-6\"\n\t\t\t\t\t\txmlns=\"http://www.w3.org/2000/svg\"\n\t\t\t\t\t\twidth=\"1em\"\n\t\t\t\t\t\theight=\"1em\"\n\t\t\t\t\t\tviewBox=\"0 0 24 24\"\n\t\t\t\t\t>\n\t\t\t\t\t\t<path\n\t\t\t\t\t\t\tfill=\"currentColor\"\n\t\t\t\t\t\t\td=\"M19 3a2 2 0 0 1 2 2v14a2 2 0 0 1-2 2H5a2 2 0 0 1-2-2V5a2 2 0 0 1 2-2zm-.5 15.5v-5.3a3.26 3.26 0 0 0-3.26-3.26c-.85 0-1.84.52-2.32 1.3v-1.11h-2.79v8.37h2.79v-4.93c0-.77.62-1.4 1.39-1.4a1.4 1.4 0 0 1 1.4 1.4v4.93zM6.88 8.56a1.68 1.68 0 0 0 1.68-1.68c0-.93-.75-1.69-1.68-1.69a1.69 1.69 0 0 0-1.69 1.69c0 .93.76 1.68 1.69 1.68m1.39 9.94v-8.37H5.5v8.37z\"\n\t\t\t\t\t\t></path>\n\t\t\t\t\t</svg>\n\t\t\t\t</a>\n\t\t\t\t<a\n\t\t\t\t\thref=\"/\"\n\t\t\t\t\ttarget=\"_blank\"\n\t\t\t\t\trel=\"noopener noreferrer\"\n\t\t\t\t\taria-label=\"Facebook\"\n\t\t\t\t\tclass=\"block text-muted-foreground hover:text-primary\"\n\t\t\t\t>\n\t\t\t\t\t<svg\n\t\t\t\t\t\tclass=\"size-6\"\n\t\t\t\t\t\txmlns=\"http://www.w3.org/2000/svg\"\n\t\t\t\t\t\twidth=\"1em\"\n\t\t\t\t\t\theight=\"1em\"\n\t\t\t\t\t\tviewBox=\"0 0 24 24\"\n\t\t\t\t\t>\n\t\t\t\t\t\t<path\n\t\t\t\t\t\t\tfill=\"currentColor\"\n\t\t\t\t\t\t\td=\"M22 12c0-5.52-4.48-10-10-10S2 6.48 2 12c0 4.84 3.44 8.87 8 9.8V15H8v-3h2V9.5C10 7.57 11.57 6 13.5 6H16v3h-2c-.55 0-1 .45-1 1v2h3v3h-3v6.95c5.05-.5 9-4.76 9-9.95\"\n\t\t\t\t\t\t></path>\n\t\t\t\t\t</svg>\n\t\t\t\t</a>\n\t\t\t\t<a\n\t\t\t\t\thref=\"/\"\n\t\t\t\t\ttarget=\"_blank\"\n\t\t\t\t\trel=\"noopener noreferrer\"\n\t\t\t\t\taria-label=\"Threads\"\n\t\t\t\t\tclass=\"block text-muted-foreground hover:text-primary\"\n\t\t\t\t>\n\t\t\t\t\t<svg\n\t\t\t\t\t\tclass=\"size-6\"\n\t\t\t\t\t\txmlns=\"http://www.w3.org/2000/svg\"\n\t\t\t\t\t\twidth=\"1em\"\n\t\t\t\t\t\theight=\"1em\"\n\t\t\t\t\t\tviewBox=\"0 0 24 24\"\n\t\t\t\t\t>\n\t\t\t\t\t\t<path\n\t\t\t\t\t\t\tfill=\"none\"\n\t\t\t\t\t\t\tstroke=\"currentColor\"\n\t\t\t\t\t\t\tstroke-linecap=\"round\"\n\t\t\t\t\t\t\tstroke-linejoin=\"round\"\n\t\t\t\t\t\t\tstroke-width=\"1.5\"\n\t\t\t\t\t\t\td=\"M19.25 8.505c-1.577-5.867-7-5.5-7-5.5s-7.5-.5-7.5 8.995s7.5 8.996 7.5 8.996s4.458.296 6.5-3.918c.667-1.858.5-5.573-6-5.573c0 0-3 0-3 2.5c0 .976 1 2 2.5 2s3.171-1.027 3.5-3c1-6-4.5-6.5-6-4\"\n\t\t\t\t\t\t\tcolor=\"currentColor\"\n\t\t\t\t\t\t></path>\n\t\t\t\t\t</svg>\n\t\t\t\t</a>\n\t\t\t\t<a\n\t\t\t\t\thref=\"/\"\n\t\t\t\t\ttarget=\"_blank\"\n\t\t\t\t\trel=\"noopener noreferrer\"\n\t\t\t\t\taria-label=\"Instagram\"\n\t\t\t\t\tclass=\"block text-muted-foreground hover:text-primary\"\n\t\t\t\t>\n\t\t\t\t\t<svg\n\t\t\t\t\t\tclass=\"size-6\"\n\t\t\t\t\t\txmlns=\"http://www.w3.org/2000/svg\"\n\t\t\t\t\t\twidth=\"1em\"\n\t\t\t\t\t\theight=\"1em\"\n\t\t\t\t\t\tviewBox=\"0 0 24 24\"\n\t\t\t\t\t>\n\t\t\t\t\t\t<path\n\t\t\t\t\t\t\tfill=\"currentColor\"\n\t\t\t\t\t\t\td=\"M7.8 2h8.4C19.4 2 22 4.6 22 7.8v8.4a5.8 5.8 0 0 1-5.8 5.8H7.8C4.6 22 2 19.4 2 16.2V7.8A5.8 5.8 0 0 1 7.8 2m-.2 2A3.6 3.6 0 0 0 4 7.6v8.8C4 18.39 5.61 20 7.6 20h8.8a3.6 3.6 0 0 0 3.6-3.6V7.6C20 5.61 18.39 4 16.4 4zm9.65 1.5a1.25 1.25 0 0 1 1.25 1.25A1.25 1.25 0 0 1 17.25 8A1.25 1.25 0 0 1 16 6.75a1.25 1.25 0 0 1 1.25-1.25M12 7a5 5 0 0 1 5 5a5 5 0 0 1-5 5a5 5 0 0 1-5-5a5 5 0 0 1 5-5m0 2a3 3 0 0 0-3 3a3 3 0 0 0 3 3a3 3 0 0 0 3-3a3 3 0 0 0-3-3\"\n\t\t\t\t\t\t></path>\n\t\t\t\t\t</svg>\n\t\t\t\t</a>\n\t\t\t\t<a\n\t\t\t\t\thref=\"/\"\n\t\t\t\t\ttarget=\"_blank\"\n\t\t\t\t\trel=\"noopener noreferrer\"\n\t\t\t\t\taria-label=\"TikTok\"\n\t\t\t\t\tclass=\"block text-muted-foreground hover:text-primary\"\n\t\t\t\t>\n\t\t\t\t\t<svg\n\t\t\t\t\t\tclass=\"size-6\"\n\t\t\t\t\t\txmlns=\"http://www.w3.org/2000/svg\"\n\t\t\t\t\t\twidth=\"1em\"\n\t\t\t\t\t\theight=\"1em\"\n\t\t\t\t\t\tviewBox=\"0 0 24 24\"\n\t\t\t\t\t>\n\t\t\t\t\t\t<path\n\t\t\t\t\t\t\tfill=\"currentColor\"\n\t\t\t\t\t\t\td=\"M16.6 5.82s.51.5 0 0A4.28 4.28 0 0 1 15.54 3h-3.09v12.4a2.59 2.59 0 0 1-2.59 2.5c-1.42 0-2.6-1.16-2.6-2.6c0-1.72 1.66-3.01 3.37-2.48V9.66c-3.45-.46-6.47 2.22-6.47 5.64c0 3.33 2.76 5.7 5.69 5.7c3.14 0 5.69-2.55 5.69-5.7V9.01a7.35 7.35 0 0 0 4.3 1.38V7.3s-1.88.09-3.24-1.48\"\n\t\t\t\t\t\t></path>\n\t\t\t\t\t</svg>\n\t\t\t\t</a>\n\t\t\t</div>\n\t\t</div>\n\t</div>\n\t<div class=\"mx-auto max-w-5xl px-6\">\n\t\t<div class=\"grid gap-12 md:grid-cols-5 md:gap-0 lg:grid-cols-4\">\n\t\t\t<div\n\t\t\t\tclass=\"grid grid-cols-2 gap-6 sm:grid-cols-4 md:col-span-5 md:row-start-1 lg:col-span-3\"\n\t\t\t>\n\t\t\t\t{#each links as link}\n\t\t\t\t\t<div class=\"space-y-4 text-sm\">\n\t\t\t\t\t\t<span class=\"block font-medium\">{link.group}</span>\n\t\t\t\t\t\t{#each link.items as item}\n\t\t\t\t\t\t\t<a\n\t\t\t\t\t\t\t\thref={item.href}\n\t\t\t\t\t\t\t\tclass=\"block text-muted-foreground duration-150 hover:text-primary\"\n\t\t\t\t\t\t\t>\n\t\t\t\t\t\t\t\t<span>{item.title}</span>\n\t\t\t\t\t\t\t</a>\n\t\t\t\t\t\t{/each}\n\t\t\t\t\t</div>\n\t\t\t\t{/each}\n\t\t\t</div>\n\t\t\t<form\n\t\t\t\tclass=\"row-start-1 border-b pb-8 text-sm md:col-span-2 md:border-none lg:col-span-1\"\n\t\t\t>\n\t\t\t\t<div class=\"space-y-4\">\n\t\t\t\t\t<Label for=\"mail\" class=\"block font-medium\">Newsletter</Label>\n\t\t\t\t\t<div class=\"flex gap-2\">\n\t\t\t\t\t\t<Input\n\t\t\t\t\t\t\ttype=\"email\"\n\t\t\t\t\t\t\tid=\"mail\"\n\t\t\t\t\t\t\tname=\"mail\"\n\t\t\t\t\t\t\tplaceholder=\"Your email\"\n\t\t\t\t\t\t\tclass=\"h-8 text-sm\"\n\t\t\t\t\t\t/>\n\t\t\t\t\t\t<Button size=\"sm\">Submit</Button>\n\t\t\t\t\t</div>\n\t\t\t\t\t<span class=\"block text-sm text-muted-foreground\">Don't miss any update!</span>\n\t\t\t\t</div>\n\t\t\t</form>\n\t\t</div>\n\t\t<div class=\"mt-12 flex flex-wrap items-end justify-between gap-6 border-t py-6\">\n\t\t\t<small class=\"order-last block text-center text-sm text-muted-foreground md:order-first\"\n\t\t\t\t>© {new Date().getFullYear()} Tailus UI, All rights reserved</small\n\t\t\t>\n\t\t\t<form action=\"\">\n\t\t\t\t<div class=\"relative\">\n\t\t\t\t\t<ChevronsUpDown\n\t\t\t\t\t\tclass=\"pointer-events-none absolute inset-y-0 right-2 my-auto opacity-75\"\n\t\t\t\t\t\tsize=\"0.75rem\"\n\t\t\t\t\t/>\n\t\t\t\t\t<select\n\t\t\t\t\t\tclass={cn(\n\t\t\t\t\t\t\t\"flex h-9 w-full min-w-32 appearance-none rounded-md border border-input bg-transparent px-3 py-1 text-base shadow-xs transition-[color,box-shadow] outline-none selection:bg-primary selection:text-primary-foreground file:inline-flex file:h-7 file:border-0 file:bg-transparent file:text-sm file:font-medium file:text-foreground placeholder:text-muted-foreground disabled:pointer-events-none disabled:cursor-not-allowed disabled:opacity-50 md:text-sm\",\n\t\t\t\t\t\t\t\"focus-visible:border-ring focus-visible:ring-[3px] focus-visible:ring-ring/50\",\n\t\t\t\t\t\t\t\"aria-invalid:border-destructive aria-invalid:ring-destructive/20 dark:aria-invalid:ring-destructive/40\"\n\t\t\t\t\t\t)}\n\t\t\t\t\t\tname=\"language\"\n\t\t\t\t\t>\n\t\t\t\t\t\t<option value=\"1\">English</option>\n\t\t\t\t\t\t<option value=\"2\">Espanol</option>\n\t\t\t\t\t\t<option value=\"3\">Français</option>\n\t\t\t\t\t\t<option value=\"4\">Swahili</option>\n\t\t\t\t\t\t<option value=\"5\">Lingala</option>\n\t\t\t\t\t</select>\n\t\t\t\t</div>\n\t\t\t</form>\n\t\t</div>\n\t</div>\n</footer>\n",
			"type": "registry:component",
			"target": "blocks/footer/footer-three.svelte"
		}
	]
}