release
This commit is contained in:
commit
47f67eea8c
43 changed files with 5819 additions and 0 deletions
54
examples/blueprint-home/contact.bp
Normal file
54
examples/blueprint-home/contact.bp
Normal file
|
@ -0,0 +1,54 @@
|
|||
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 { "📱" } }
|
||||
}
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue