You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: src/pages/index.astro
+24-20Lines changed: 24 additions & 20 deletions
Original file line number
Diff line number
Diff line change
@@ -80,23 +80,21 @@ import Testimonial from '../components/Testimonial.astro';
80
80
<!-- More sections continue in the same fashion -->
81
81
82
82
<divclass="space-y-6 text-center">
83
+
<!-- Rationale Section -->
84
+
<divclass="text-2xl">Our Methodology</div>
85
+
<divclass="mx-auto max-w-xl font-thin">
86
+
<strong>Here's how it works.</strong> Take your standard web app (like React,
87
+
Vue, Next, Angular, etc.) and convert each individual component (like buttons,
88
+
divs, etc.) into its own dedicated WASM module with granular reactivity.
89
+
Import each module component into a primary Angular application using WebAssembly.instantiateStreaming().
90
+
This process <strong>also</strong> optimizes critical CSS load times by converting
91
+
every ASCII key-value into respective hexadecimal values. The beauty of this
92
+
system is that if you ever need to change a single element, you don't need
93
+
to recompile your entire application - just hot-swap the individual WASM
94
+
module.
83
95
84
-
<!-- Rationale Section -->
85
-
<divclass="text-2xl">Our Methodology</div>
86
-
<divclass="mx-auto max-w-xl font-thin">
87
-
<strong>Here's how it works.</strong> Take your standard web app (like React, Vue, Next,
88
-
Angular, etc.) and convert each individual component (like buttons, divs,
89
-
etc.) into its own dedicated WASM module with granular reactivity. Import
90
-
each module component into a primary Angular application using
91
-
WebAssembly.instantiateStreaming(). This process <strong>also</strong> optimizes
92
-
critical CSS load times by converting every ASCII key-value into respective
93
-
hexadecimal values. The beauty of this system is that if you ever need to change
94
-
a single element, you don't need to recompile your entire application - just hot-swap
95
-
the individual WASM module.
96
-
97
-
<div>This is our commitment to efficiency.</div>
98
-
</div>
99
-
96
+
<div>This is our commitment to efficiency.</div>
97
+
</div>
100
98
101
99
<h2class="text-3xl">Powered by:</h2>
102
100
<divclass="mx-auto max-w-xl space-y-8 font-thin">
@@ -143,10 +141,16 @@ import Testimonial from '../components/Testimonial.astro';
143
141
height={72}
144
142
/>
145
143
<p>
146
-
Rustular champions flexibility and framework-agnosticism, capable of interfacing efficiently with your preferred front-end technology—Angular, React, Vue, or others.
147
-
While we acknowledge Angular's component-based architecture, wide-ranging capabilities, and high scalability as a great match, we value the power of choice.
148
-
Our commitment is to ensure that your applications are fast, highly interactive, and user-friendly, providing a superior web experience, regardless of the chosen framework.
149
-
Our vision is that <strong>any</strong> application can be Rustular.
144
+
Rustular champions flexibility and framework-agnosticism, capable of
145
+
interfacing efficiently with your preferred front-end
146
+
technology—Angular, React, Vue, or others. While we acknowledge
0 commit comments