@stampui/blocks 1.0.0 → 1.1.1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/src/manifests.ts CHANGED
@@ -1677,6 +1677,289 @@ export const manifests: Record<string, BlockManifest> = {
1677
1677
  supportsLightMode: true,
1678
1678
  promptReady: true,
1679
1679
  },
1680
+
1681
+ // ─── New Blocks ───────────────────────────────────────────────────────────
1682
+
1683
+ "waitlist-section": {
1684
+ slug: "waitlist-section",
1685
+ title: "Waitlist Section",
1686
+ description: "Email signup section with a waitlist counter and thank-you state.",
1687
+ category: "Marketing",
1688
+ tags: ["waitlist", "email", "signup", "landing"],
1689
+ version: "1.0.0",
1690
+ updatedAt: "2026-05-17",
1691
+ changelog: ["Initial release"],
1692
+ status: "free",
1693
+ difficulty: "beginner",
1694
+ frameworks: ["nextjs", "react", "vite"],
1695
+ dependencies: [],
1696
+ files: [{ path: "components/blocks/waitlist-section.tsx", type: "block" }],
1697
+ tokens: ["foreground", "muted-foreground", "border", "surface-2"],
1698
+ supportsDarkMode: true,
1699
+ supportsLightMode: false,
1700
+ promptReady: true,
1701
+ },
1702
+
1703
+ "changelog-feed": {
1704
+ slug: "changelog-feed",
1705
+ title: "Changelog Feed",
1706
+ description: "Vertical timeline of versioned product updates with type tags.",
1707
+ category: "Display",
1708
+ tags: ["changelog", "timeline", "updates", "versioning"],
1709
+ version: "1.0.0",
1710
+ updatedAt: "2026-05-17",
1711
+ changelog: ["Initial release"],
1712
+ status: "free",
1713
+ difficulty: "beginner",
1714
+ frameworks: ["nextjs", "react", "vite"],
1715
+ dependencies: [],
1716
+ files: [{ path: "components/blocks/changelog-feed.tsx", type: "block" }],
1717
+ tokens: ["foreground", "muted-foreground", "border", "surface-2"],
1718
+ supportsDarkMode: true,
1719
+ supportsLightMode: false,
1720
+ promptReady: true,
1721
+ },
1722
+
1723
+ "faq-accordion": {
1724
+ slug: "faq-accordion",
1725
+ title: "FAQ Accordion",
1726
+ description: "Expandable FAQ section built without external accordion dependencies.",
1727
+ category: "Marketing",
1728
+ tags: ["faq", "accordion", "help", "landing"],
1729
+ version: "1.0.0",
1730
+ updatedAt: "2026-05-17",
1731
+ changelog: ["Initial release"],
1732
+ status: "free",
1733
+ difficulty: "beginner",
1734
+ frameworks: ["nextjs", "react", "vite"],
1735
+ dependencies: ["lucide-react"],
1736
+ files: [{ path: "components/blocks/faq-accordion.tsx", type: "block" }],
1737
+ tokens: ["foreground", "muted-foreground", "border"],
1738
+ supportsDarkMode: true,
1739
+ supportsLightMode: false,
1740
+ promptReady: true,
1741
+ },
1742
+
1743
+ "cta-banner": {
1744
+ slug: "cta-banner",
1745
+ title: "CTA Banner",
1746
+ description: "End-of-page call-to-action section with primary and secondary buttons.",
1747
+ category: "Marketing",
1748
+ tags: ["cta", "call-to-action", "landing", "conversion"],
1749
+ version: "1.0.0",
1750
+ updatedAt: "2026-05-17",
1751
+ changelog: ["Initial release"],
1752
+ status: "free",
1753
+ difficulty: "beginner",
1754
+ frameworks: ["nextjs", "react", "vite"],
1755
+ dependencies: [],
1756
+ files: [{ path: "components/blocks/cta-banner.tsx", type: "block" }],
1757
+ tokens: ["foreground", "muted-foreground", "border"],
1758
+ supportsDarkMode: true,
1759
+ supportsLightMode: false,
1760
+ promptReady: true,
1761
+ },
1762
+
1763
+ "site-footer": {
1764
+ slug: "site-footer",
1765
+ title: "Site Footer",
1766
+ description: "Full site footer with brand, grouped nav links, social icons, and copyright.",
1767
+ category: "Navigation",
1768
+ tags: ["footer", "navigation", "links", "social"],
1769
+ version: "1.0.0",
1770
+ updatedAt: "2026-05-17",
1771
+ changelog: ["Initial release"],
1772
+ status: "free",
1773
+ difficulty: "beginner",
1774
+ frameworks: ["nextjs", "react", "vite"],
1775
+ dependencies: ["lucide-react"],
1776
+ files: [{ path: "components/blocks/site-footer.tsx", type: "block" }],
1777
+ tokens: ["foreground", "muted-foreground", "border", "surface-2"],
1778
+ supportsDarkMode: true,
1779
+ supportsLightMode: false,
1780
+ promptReady: true,
1781
+ },
1782
+
1783
+ "testimonials-wall": {
1784
+ slug: "testimonials-wall",
1785
+ title: "Testimonials Wall",
1786
+ description: "Responsive grid of testimonial cards with author avatars and quotes.",
1787
+ category: "Marketing",
1788
+ tags: ["testimonials", "social-proof", "quotes", "grid"],
1789
+ version: "1.0.0",
1790
+ updatedAt: "2026-05-17",
1791
+ changelog: ["Initial release"],
1792
+ status: "free",
1793
+ difficulty: "beginner",
1794
+ frameworks: ["nextjs", "react", "vite"],
1795
+ dependencies: [],
1796
+ files: [{ path: "components/blocks/testimonials-wall.tsx", type: "block" }],
1797
+ tokens: ["foreground", "muted-foreground", "border", "surface-2"],
1798
+ supportsDarkMode: true,
1799
+ supportsLightMode: false,
1800
+ promptReady: true,
1801
+ },
1802
+
1803
+ "metrics-grid": {
1804
+ slug: "metrics-grid",
1805
+ title: "Metrics Grid",
1806
+ description: "Dashboard KPI grid with trend indicators, icons, and configurable columns.",
1807
+ category: "Dashboard",
1808
+ tags: ["metrics", "kpi", "dashboard", "stats", "analytics"],
1809
+ version: "1.0.0",
1810
+ updatedAt: "2026-05-17",
1811
+ changelog: ["Initial release"],
1812
+ status: "free",
1813
+ difficulty: "intermediate",
1814
+ frameworks: ["nextjs", "react"],
1815
+ dependencies: ["lucide-react"],
1816
+ files: [{ path: "components/blocks/metrics-grid.tsx", type: "block" }],
1817
+ tokens: ["foreground", "muted-foreground", "border", "surface-2"],
1818
+ supportsDarkMode: true,
1819
+ supportsLightMode: false,
1820
+ promptReady: true,
1821
+ },
1822
+
1823
+ "announcement-bar": {
1824
+ slug: "announcement-bar",
1825
+ title: "Announcement Bar",
1826
+ description: "Dismissible top-of-page announcement banner with optional CTA.",
1827
+ category: "Feedback",
1828
+ tags: ["announcement", "banner", "notification", "top-bar"],
1829
+ version: "1.0.0",
1830
+ updatedAt: "2026-05-17",
1831
+ changelog: ["Initial release"],
1832
+ status: "free",
1833
+ difficulty: "beginner",
1834
+ frameworks: ["nextjs", "react", "vite"],
1835
+ dependencies: ["lucide-react"],
1836
+ files: [{ path: "components/blocks/announcement-bar.tsx", type: "block" }],
1837
+ tokens: ["foreground", "muted-foreground", "border", "surface-2"],
1838
+ supportsDarkMode: true,
1839
+ supportsLightMode: false,
1840
+ promptReady: true,
1841
+ },
1842
+
1843
+ "social-proof-bar": {
1844
+ slug: "social-proof-bar",
1845
+ title: "Social Proof Bar",
1846
+ description: "Horizontal logo strip showing companies or teams using your product.",
1847
+ category: "Marketing",
1848
+ tags: ["logos", "social-proof", "companies", "trust"],
1849
+ version: "1.0.0",
1850
+ updatedAt: "2026-05-17",
1851
+ changelog: ["Initial release"],
1852
+ status: "free",
1853
+ difficulty: "beginner",
1854
+ frameworks: ["nextjs", "react", "vite"],
1855
+ dependencies: [],
1856
+ files: [{ path: "components/blocks/social-proof-bar.tsx", type: "block" }],
1857
+ tokens: ["muted-foreground", "border"],
1858
+ supportsDarkMode: true,
1859
+ supportsLightMode: false,
1860
+ promptReady: true,
1861
+ },
1862
+
1863
+ "feature-comparison": {
1864
+ slug: "feature-comparison",
1865
+ title: "Feature Comparison",
1866
+ description: "Plan comparison table with highlighted column, checkmarks, and custom values.",
1867
+ category: "Marketing",
1868
+ tags: ["pricing", "comparison", "table", "features", "plans"],
1869
+ version: "1.0.0",
1870
+ updatedAt: "2026-05-17",
1871
+ changelog: ["Initial release"],
1872
+ status: "free",
1873
+ difficulty: "intermediate",
1874
+ frameworks: ["nextjs", "react", "vite"],
1875
+ dependencies: [],
1876
+ files: [{ path: "components/blocks/feature-comparison.tsx", type: "block" }],
1877
+ tokens: ["foreground", "muted-foreground", "border", "surface-2"],
1878
+ supportsDarkMode: true,
1879
+ supportsLightMode: false,
1880
+ promptReady: true,
1881
+ },
1882
+
1883
+ "team-grid": {
1884
+ slug: "team-grid",
1885
+ title: "Team Grid",
1886
+ description: "Responsive grid of team member cards with avatars, roles, bios, and social links.",
1887
+ category: "Display",
1888
+ tags: ["team", "about", "members", "grid", "people"],
1889
+ version: "1.0.0",
1890
+ updatedAt: "2026-05-17",
1891
+ changelog: ["Initial release"],
1892
+ status: "free",
1893
+ difficulty: "beginner",
1894
+ frameworks: ["nextjs", "react", "vite"],
1895
+ dependencies: ["lucide-react"],
1896
+ files: [{ path: "components/blocks/team-grid.tsx", type: "block" }],
1897
+ tokens: ["foreground", "muted-foreground", "border", "surface-2"],
1898
+ supportsDarkMode: true,
1899
+ supportsLightMode: false,
1900
+ promptReady: true,
1901
+ },
1902
+
1903
+ "empty-state": {
1904
+ slug: "empty-state",
1905
+ title: "Empty State",
1906
+ description: "Centered empty state with icon, title, description, and optional action.",
1907
+ category: "Feedback",
1908
+ tags: ["empty", "no-data", "placeholder", "state"],
1909
+ version: "1.0.0",
1910
+ updatedAt: "2026-05-17",
1911
+ changelog: ["Initial release"],
1912
+ status: "free",
1913
+ difficulty: "beginner",
1914
+ frameworks: ["nextjs", "react", "vite"],
1915
+ dependencies: ["lucide-react"],
1916
+ files: [{ path: "components/blocks/empty-state.tsx", type: "block" }],
1917
+ tokens: ["foreground", "muted-foreground", "border"],
1918
+ supportsDarkMode: true,
1919
+ supportsLightMode: false,
1920
+ promptReady: true,
1921
+ },
1922
+
1923
+ "error-page": {
1924
+ slug: "error-page",
1925
+ title: "Error Page",
1926
+ description: "Minimal full-page error display (404/500) with code, title, and back button.",
1927
+ category: "Feedback",
1928
+ tags: ["error", "404", "500", "not-found", "page"],
1929
+ version: "1.0.0",
1930
+ updatedAt: "2026-05-17",
1931
+ changelog: ["Initial release"],
1932
+ status: "free",
1933
+ difficulty: "beginner",
1934
+ frameworks: ["nextjs", "react", "vite"],
1935
+ dependencies: [],
1936
+ files: [{ path: "components/blocks/error-page.tsx", type: "block" }],
1937
+ tokens: ["foreground", "muted-foreground"],
1938
+ supportsDarkMode: true,
1939
+ supportsLightMode: false,
1940
+ promptReady: true,
1941
+ },
1942
+
1943
+ "cookie-consent": {
1944
+ slug: "cookie-consent",
1945
+ title: "Cookie Consent",
1946
+ description: "GDPR-compliant fixed-bottom cookie consent banner with accept/decline/customize actions.",
1947
+ category: "UI",
1948
+ tags: ["cookie", "gdpr", "consent", "privacy", "banner"],
1949
+ version: "1.0.0",
1950
+ updatedAt: "2026-05-17",
1951
+ changelog: ["Initial release"],
1952
+ status: "free",
1953
+ difficulty: "beginner",
1954
+ frameworks: ["nextjs", "react", "vite"],
1955
+ dependencies: [],
1956
+ files: [{ path: "components/blocks/cookie-consent.tsx", type: "block" }],
1957
+ tokens: ["foreground", "muted-foreground", "border", "surface-2"],
1958
+ supportsDarkMode: true,
1959
+ supportsLightMode: false,
1960
+ promptReady: true,
1961
+ },
1962
+
1680
1963
  }
1681
1964
 
1682
1965
  export const blockList = Object.values(manifests)