{
	"$schema": "https://shadcn-svelte.com/schema/registry-item.json",
	"name": "footer-four",
	"type": "registry:block",
	"description": "Multi-column footer with sitemap links",
	"files": [
		{
			"content": "<script>\n\tconst links = [\n\t\t{\n\t\t\ttitle: \"Features\",\n\t\t\thref: \"#\",\n\t\t},\n\t\t{\n\t\t\ttitle: \"Solution\",\n\t\t\thref: \"#\",\n\t\t},\n\t\t{\n\t\t\ttitle: \"Customers\",\n\t\t\thref: \"#\",\n\t\t},\n\t\t{\n\t\t\ttitle: \"Pricing\",\n\t\t\thref: \"#\",\n\t\t},\n\t\t{\n\t\t\ttitle: \"Help\",\n\t\t\thref: \"#\",\n\t\t},\n\t\t{\n\t\t\ttitle: \"About\",\n\t\t\thref: \"#\",\n\t\t},\n\t];\n</script>\n\n<footer class=\"border-b bg-white py-12 dark:bg-transparent\">\n\t<div class=\"mx-auto max-w-5xl px-6\">\n\t\t<div class=\"flex flex-wrap justify-between gap-6\">\n\t\t\t<span 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</span\n\t\t\t>\n\t\t\t<div class=\"order-first flex flex-wrap justify-center gap-6 text-sm md:order-last\">\n\t\t\t\t{#each links as link, index}\n\t\t\t\t\t<a\n\t\t\t\t\t\thref={link.href}\n\t\t\t\t\t\tclass=\"block text-muted-foreground duration-150 hover:text-primary\"\n\t\t\t\t\t>\n\t\t\t\t\t\t<span>{link.title}</span>\n\t\t\t\t\t</a>\n\t\t\t\t{/each}\n\t\t\t</div>\n\t\t</div>\n\t</div>\n</footer>\n",
			"type": "registry:component",
			"target": "blocks/footer/footer-four.svelte"
		}
	]
}