catcrafts.net/interfaces/Catcrafts-Views.cppm
2025-11-12 21:04:34 +01:00

20 lines
515 B
C++

/*
catcrafts.net
Copyright (C) 2025 Catcrafts
The source code of this website is made available for viewing purposes only.
No permission is granted to copy, modify, distribute, or create derivative works.
*/
export module Catcrafts:Views;
import Crafter.CppDOM;
using namespace Crafter;
export namespace Catcrafts {
HtmlElementView* body = new HtmlElementView("body");
HtmlElementView* head = new HtmlElementView("head", R"(
<style>
</style>
)");//add style here
}