
Automatically Update Your Footer Date
You don’t need to manually update the year in your footer anymore. Simply copy and paste our year component into Webflow, press publish, and you’re set. Adjust the design and everything else however you like.
Option 1 (Webflow): Copy and Paste in One Click
This component includes "© 0000 Flowing.to. All rights reserved." text and the code needed to change the "0000" to the current year. You can customize the text entirely, but make sure the "0000" is wrapped in a span with the attribute [a-data-flow-auto-date= ]. You can find this in the settings tab.
[c-yearupdate]
---
Option 2 (Code): Do it custom
First, you need a simple html element with the attribute [a-data-flow-auto-date= ]
<div>© <span data-flow-auto-date="">2025</span> Flwoing.to. All rights reserved.</div>Then you need a few lines of js to make it work. Simply copy paste this in the body
<script>
 // Flowing components - By Kabarza.com
 document.addEventListener('DOMContentLoaded', () => {
 // Find elements with the [data-flw-year] attribute
 const yearTargets = document.querySelectorAll('[data-flow-auto-date]');
 // Get the current year
 const currentYear = new Date().getFullYear();
 // Update text content for each target element
 yearTargets.forEach(target => {
 if (target) {
 target.textContent = currentYear;
 }
 });
 });
</script>That's it. You are done.
You can copy-paste this component directly into your Webflow project and style it however you want.
[ag-0-d-This is the description]
[ag-0-a-name = value]
[ag-0-a-name = value]- This is the description[li-a-name = value]Click to Copy[li-a-name = value]
 - This is the description[li-a-name = value][li-a-name = value]
 - This is the description[li-a-name = value][li-a-name = value]
 
Quick Setup:
You can copy-paste this component directly into your Webflow project and style it however you want.
[c-Final - First Bento Grid]
Required Attributes:
- this is the head. should it be the first item or should it be the first heading before the list?
 - data-flow = card: Defines the card element. The glow is inside this div.
 - data-flow-color-border = #your-color: Sets the border glow color. Accepts CSS variables, functions, or static color values.
 - data-flow-color-card = #your-color: Sets the inner glow color. Accepts CSS variables, functions, or static color values.
 
Optional Settings:
Use variables and the color-mix function. You can set the card’s inner glow to something like: [a-data-flow-color-card = "color-mix(in srgb, var(--pink) 20%, transparent)"]. Here we are using a color variable, which can be the same as the border  [a-data-flow-color = "transparent)"] color, but set it to 20% opacity with the color-mix function.
In the code, there are two default values that you can change if you want.









