Complete the code to import the main variables file in Sass.
@use '[1]/variables';
The base folder usually contains foundational files like variables in the 7-1 pattern.
Complete the code to import all component partials using the 7-1 pattern.
@use '[1]/*';
The components folder holds reusable UI parts, so importing all partials from there is common.
Fix the error in the import statement for layout partials in the 7-1 pattern.
@use '[1]/header';
The layout folder contains structural parts like header and footer in the 7-1 pattern.
Fill both blanks to create a Sass map of page names and their main partial files.
$pages: ([1]: '_home', [2]: '_about');
The keys in the map represent page names like 'home' and 'about' matching their partial files.
Fill all three blanks to write a Sass import statement for utility functions, mixins, and variables.
@use '[1]/functions'; @use '[2]/mixins'; @use '[3]/variables';
Utility functions and mixins are usually in the utils folder, while variables are in base.