blueprint/examples/blueprint-home/contact.bp
2025-01-21 14:00:09 +01:00

54 lines
No EOL
1.6 KiB
Text
Raw Permalink Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

page(favicon:"/favicon.ico") {
title { "Blueprint - Contact" }
description { "A modern, declarative UI framework for building beautiful web interfaces" }
keywords { "blueprint, ui, framework, web development" }
author { "Blueprint Team" }
}
navbar {
horizontal {
link(href:index) { text(bold) { "Blueprint Live" } }
links {
link(href:index) { "Home" }
link(href:components) { "Components" }
link(href:about) { "About" }
link(href:contact) { "Contact" }
}
}
}
section(vertical, centered) {
card(width:100) {
title { "Contact Us" }
text(subtle) { "Get in touch with the Blueprint team" }
vertical {
text(subtle) { "Name" }
input { "Your name" }
text(subtle) { "Email" }
input { "you@example.com" }
text(subtle) { "Message" }
textarea { "Type your message here..." }
horizontal {
checkbox { }
text { "Subscribe to updates" }
}
link(href:submit) { button { "Send Message" } }
}
}
horizontal(centered) {
text(subtle) { "Or connect with us on social media:" }
}
horizontal(centered) {
link(href:twitter) { button-compact { "𝕏" } }
link(href:facebook) { button-compact { "📘" } }
link(href:linkedin) { button-compact { "💼" } }
link(href:instagram) { button-compact { "📱" } }
}
}